


With this feature you have the possibility to
change the default ringtone of your mobile phone.
aspsms supports the realtime import of ringtones from the
harddisk of the webserver or from any URL.
We currently support the following ringtone formats:
Nokia PC-Composer (*.ott) and Nokring (*.txt)
First example:
The ringtone (happybirthday.txt) will be loaded
from the local disk of the webserver or any
computer where the aspsms component is installed.
<html>
<body>
<%
'---------------------------------------------------------------
' aspsms.com(ponent) (c) 2001 by VADIAN.NET AG
'---------------------------------------------------------------
' send specific ringtone from the local hard disk
'---------------------------------------------------------------
Set SMS = Server.CreateObject("ASPSMS.Booster")
SMS.Userkey = "I3QHMYKEY6E"
SMS.Password = "mypassword"
SMS.Originator = "0041763255533"
SMS.BinaryFileLocation = "c:/files/ringtones/birthday.txt"
SMS.AddRecipient "0016598478615"
SMS.SendRingtone
lResult = SMS.ErrorCode
SMS.DeleteAllRecipients
Set SMS = Nothing
%>
done.
</body>
</html>