.Net Component

SendMsg

Sends an SMS message via the Internet Gateway.

String SendMsg ( String To, String Text, String From )

Parameters:

To Input This is the destination phone number
Text Input The content of the text message
From Input This is the source/sender's phone number
MessageId Return Unique message ID

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";

String MessageId = objIntelliSMS.SendMsg 
    ( "44771012345", "Hello", "SENDER_ID" );
    		

<< Back to DotNet Component