SQL Object
 
Syntax
 
SQL.SendSMD( FromID, ToPhone, Message)
 
Description
Sends an SMS message through the Tradium Mail Server to the specified telephone number. If the message is successfully included in the sendqueue, the function returns TRUE, or FALSE otherwise.
 
Parameter
Description
FromID
The sender as it should appear in the recipient's phone. May be numbers and/or letters.
ToPhone
The phone number to which the SMS message should be sent. May only be a Dutch 06 number, digits only, with no - + or other characters.
Message
The content of the SMS message.
 
See Also
Example
Sub Main()
 
    Debug.Print SQL.SendSMS("Agenda", "0612345678", "Vergeet uw afspraak niet!")
 
End Sub