.Net Component

SendBinaryMsg

Sends a Binary SMS message via the Internet Gateway. Binary Messages can be used to send SmartMessages, such as Ringtones and Logos.

SendStatusCollection 
SendBinaryMsg ( StringCollection To, String UserDataHeader, String UserData, 
String From )

Parameters:

To Input List of destination phone numbers
UserDataHeader Input (Optional) User Data Header
UserData Input User Data (140 octets max)
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" );

SendStatusCollection SendStatusList;

SendStatusList = objIntelliSMS.SendBinaryMsg ( 
    ToList, "06050415820000", 
    "32F40100480E0100000000000000000000000000000000000000" + 
    "0000000000000000000001247803000000E0080120CC06400000" + 
    "40080120CC06C00000479E7124F0EFFADCF64448892479B6DAC6" +
    "CD4448F9241DB6DACECF44488124CDB6CD96CC44488924CDB6CD" +
    "96CDE446712478E66D9EC6000000000000000000000000000000" +
    "000000", "SENDER_ID" );
 				

<< Back to DotNet Component