Products
INTEGRATED
STANDALONE
OTHER
Use this API to send text messages via a linked library.
Easy to use API
DLL functions can be called from many languages
Proxy server support
XCOPY deployment
Email replies
int SendSMS(char *AccountID, char *EmailAddress, char *Password, char *Recipient, char *Message)
{
HMODULE RedOxygenLibrary;
SendSMSFunction *SendSMS;
int Result;
RedOxygenLibrary = LoadLibrary("redoxygen.dll");
SendSMS = (SendSMSFunction *) GetProcAddress(RedOxygenLibrary, "SendSMS");
Result = SendSMS(AccountID, EmailAddress, Password, Recipient, Message);
FreeLibrary(RedOxygenLibrary);
return Result;
}