Products
INTEGRATED
STANDALONE
OTHER
Use this API to send text messages from Delphi.
Easy to use DLL
Delivery status via function return code
Long SMS (up to 765 characters)
Email replies
Proxy server support
function SendSMS ( AccountId : String; Email : String; Password : String; Recipient : String; Message : String) : Integer; stdcall; external 'redoxygen.dll'; procedure SendMessage (AccountID, Email, Password, Recipient, Message : String) var Result : Integer; begin Result := SendSMS(AccountID, Email, Password, Recipient, Message); end;