0 pts.
 Sending SMS in Lotus Notes
I have written a small workflow application, using Lotus designer. One of the requirement of the application is to send email and SMS message to receipent. I have completed the first phase of sending email. I want to know if there is any way to send short message to the receipents mobile. If yes, how can I acheive this. If possible pleas provide a docmenation and code for the same. Thank for all Regards Ajaz

Software/Hardware used:
ASKED: February 2, 2005  4:13 AM
UPDATED: May 14, 2012  7:07 AM

Answer Wiki:
Hi, I used in the past a free italian gateway to send sms message from my Notes app and all was fine (I post you my routine). If you can spend money there are several commercial program for Notes: Search Google with the words: lotus domino send sms I'll hope this is usefull for you. Let me know... Ciao Here is my the code: Function MandaSMS (prefisso As String , numero As String , msg As String) As Integer Const SITO_SMS = "http://www.jumpy.it/cgi-public/ep_senza_ref.dat?messaggio=" Const lunmax = 130 Dim dbWeb As NotesDatabase Dim webdoc As NotesDocument Dim x As Integer Dim url As String Dim wmsg As String Dim inizio As Integer ' Set dbWeb = New NotesDatabase("MI_HUB_SIC","WEB.NSF") Set dbWeb = New NotesDatabase("","PERWEB.NSF") If Not (dbWeb.IsOpen) Then Print "Impossibile aprire la connessione WEB" MandaSMS = False Else MandaSMS = True msg = Trim(msg) inizio = 1 For x = 1 To Len(msg) If Asc(Mid(msg , x , 1)) < 33 Then Mid(msg , x , 1) = "+" End If Next wmsg = Mid(msg , inizio , lunmax) Do Until wmsg = "" url = SITO_SMS + wmsg url = url + "&prefisso=" + Trim(prefisso) url = url + "&numero=" + Trim(numero) Set webdoc = dbWeb.getdocumentbyurl(url,1) inizio = inizio + lunmax wmsg = Mid(msg , inizio , lunmax) Loop dbWeb.Close End If End Function
Last Wiki Answer Submitted:  February 2, 2005  5:07 am  by  Gussino   0 pts.
All Answer Wiki Contributors:  Gussino   0 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Try SMSPulse – http://www.smspulse.com/sms/index.htm. It’s cheap and works very well for us. Also, it’s free to IBM Business Partners.

hth

Tony

 50 pts.

 

Hi,

You may also check how to send sms from lotus notus with Ozeki NG SMS Gateway:
http://www.sms-integration.com/p_71-lotus-notes-sms.html

Youtube link: http://www.youtube.com/watch?v=K6ZQ5eQWcyk

BR

 120 pts.