


Here another very easy example which shows already the power
of the ASPSMS component. In this example we
send a SMS to several recipients. You need to send
1000 SMS at once? No problem. By the way,
It is possible to add a unique transaction
number to each message to track the delivery.
<html>
<body>
<%
'------------------------------------------------------------
' aspsms.com(ponent) (c) 2001 by VADIAN.NET AG
'------------------------------------------------------------
' multiple text sms example
'------------------------------------------------------------
Set SMS = Server.CreateObject("ASPSMS.Booster")
SMS.Userkey = "I3QHMYKEY6E"
SMS.Password = "mypassword"
SMS.Originator = "0041763255533"
SMS.MessageData = "dear customer, please verify your balance. XYZ Inc."
SMS.AddRecipient "0044734255533"
SMS.AddRecipient "0041714223347"
SMS.AddRecipient "0039342552332"
SMS.AddRecipient "0043234454554"
SMS.AddRecipient "0023343434567"
SMS.AddRecipient "0077657763800"
SMS.SendTextSMS
lResult = SMS.ErrorCode
SMS.DeleteAllRecipients
Set SMS = Nothing
%>
done.
</body>
</html>