


A fancy feature to give your SMS more attention.
The whole message or just a part of it will blink
on the screen of the mobile phone. In the first example,
the whole message will blink on the display of the recipients
mobile phone. In the second example will just a part blink.
First example:
<html>
<body>
<%
'------------------------------------------------------------
' aspsms.com(ponent) (c) 2001 by VADIAN.NET AG
'------------------------------------------------------------
' blinking SMS example
'----------------------------------------------------
' The whole message blinks
'----------------------------------------------------
Set SMS = Server.CreateObject("ASPSMS.Booster")
SMS.Userkey = "I3QHMYKEY6E"
SMS.Password = "mypassword"
SMS.Originator = "0041763255533"
SMS.MessageData = "Where are you???? Tom"
SMS.BlinkingSMS = True
SMS.AddRecipient "0044734252573"
SMS.SendTextSMS
lResult = SMS.ErrorCode
SMS.DeleteAllRecipients
Set SMS = Nothing
%>
done.
</body>
</html>