.Net Component

SendUnicodeMsg

Sends a Unicode SMS message to multiple recipients via the Internet Gateway. The Unicode format is used to send multilingual messages not support by the standard GSM character set.

See Unicode Character Codes for more details.

SendStatusCollection SendUnicodeMsg ( StringCollection To, String Message, String From )
SendStatusCollection SendUnicodeMsgHex ( StringCollection To, String MessageHex, String From )

Parameters:

To Input List of destination phone numbers
Message Input The content of the text message (70 Unicode characters max.)
MessageHex Input Unicode text encoded in hexadecimal (140 octets max, 70 unicode characters)
From Input This is the source/sender's phone number
SendStatusCollection Return This collection is populated with the send status for each recipient

Exceptions:

IntelliSMSException Error returned by the IntelliSoftware SMS gateway

C# Example:

using IntelliSoftware;

IntelliSMS objIntelliSMS = new IntelliSMS();

objIntelliSMS.AccessKey = @"Yva$ER%Uhs+UU[MzwEYe";
objIntelliSMS.SecretKey = @"F{kQ^s`wVpm!EU~Bx8yB^A$N$[l{pxJA";

StringCollection ToList = new StringCollection();
ToList.Add ( "44771012345" );
ToList.Add ( "44771054321" );

SendStatusCollection SendStatusList;

SendStatusList = objIntelliSMS.SendUnicodeMsg 
    ( ToList, "Hello", "SENDER_ID" );
				

<< Back to DotNet Component