The Auron SMS Component is an easy-to-use library for sending and receiving SMS and pager messages. ### Key Features - Easy-to-use API - SMS messaging via Android, GSM modem, SMPP, HTTPS, and dial-up - Build your own SMSC with the SMPP server API - Easy-to-setup portable and secure HTTPS server APIs - Support for National Language Shift Tables - Both SMPP server and client APIs can be secured using TLS/SSL - Completely asynchronous SMPP client/server API for maximum performance - Send/receive SMS through Android 7+ smartphones with the free Auron SMS Agent app - GSM support via serial, TAPI, or direct TCP - Pager messaging via SNPP - Excellent logging and tracing options for troubleshooting - Usable in many development environments, such as .NET, C++, Delphi, and more
$ dotnet add package AxSmsThe Auron SMS Component offers the following features:
Find the API reference here: https://www.auronsoftware.com/knowledge-base/
Download the full package, which includes several working examples for C#, VB.NET, ASP.NET, C++, Powershell and more: https://www.auronsoftware.com/download/
Or check github for the source code to our examples: https://github.com/Auron-Software/AxSms-Examples
AxSms.Gsm objGsm = new AxSms.Gsm();
AxSms.Message objSms = new AxSms.Message();
objGsm.LogFile = "Log.txt";
objGsm.Open("COM2"); // Use IP address or TAPI name for TCP or TAPI.
if (objGsm.LastError != 0)
{
Console.WriteLine(
"Error opening GSM: " +
objGsm.GetErrorDescription(objGsm.LastError)
);
return;
}
objSms.ToAddress = "+31612345678";
objSms.Body = "Hello, world!";
objGsm.SendSms(objSms);
if (objGsm.LastError != 0)
{
Console.WriteLine(
"Error sending SMS: " +
objGsm.GetErrorDescription(objGsm.LastError)
);
return;
}
objGsm.Close();
AxSms.Gsm objGsm = new AxSms.Gsm();
Console.WriteLine("Auron SMS Component Version" + objGsm.Version +
"; Build" + objGsm.Build + "; Module" + objGsm.Module);
Console.WriteLine("License Status:" + objGsm.LicenseStatus);
Any questions or need an extension of the trial period? Please send us an email at: support@auronsoftware.com
This product is a fully functional 30 day trail.
Find more information about pricing and how to purchase or our sales page: https://www.auronsoftware.com/pricing/