


The very first and easiest example.
Sends a simple SMS to one recipient.
<html>
<body>
<%
'------------------------------------------------------------
' aspsms.com(ponent) (c) 2001 by VADIAN.NET AG
'------------------------------------------------------------
' simple text example
'------------------------------------------------------------
Set SMS = Server.CreateObject("ASPSMS.Booster")
SMS.Userkey = "I3QHMYKEY6E"
SMS.Password = "mypassword"
SMS.Originator = "0041763251527"
SMS.MessageData = "hello dad, call me in an hour! love, cathy"
SMS.FlashingSMS = False
SMS.AddRecipient "0044734255533"
SMS.SendTextSMS
lResult = SMS.ErrorCode
SMS.DeleteAllRecipients
Set SMS = Nothing
%>
done.
</body>
</html>