


A very nice feature. Define your own alphanumeric originator on
every SMS. It can be a mobile phone number or a short text with
a maximum of 11 characters. Example: cathy
Important: Please be aware, that using this feature is delicate.
ANY ABUSES OF THESE NICE FEATURE WILL BE TRACKED AND
PROSECUTED ACCORDING TO SERIOUS CIVIL- AND/OR
CRIMINAL LAW REGULATIONS. We will close such accounts
immediately without prior notification. Thank you for your
understanding.
<html>
<body>
<%
'------------------------------------------------------------
' aspsms.com(ponent) (c) 2001 by VADIAN.NET AG
'------------------------------------------------------------
' alphanummeric originator example
'------------------------------------------------
Set SMS = Server.CreateObject("ASPSMS.Booster")
SMS.Userkey = "I3QHMYKEY6E"
SMS.Password = "mypassword"
SMS.Originator = "cathy"
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>