LiteXSms is simple yet powerful and very high-performance sms sending mechanism and incorporating both synchronous and asynchronous usage with some advanced usages which can help us to handle sending sms more easier!
Provide sms service for ASP.NET Core (2.0 and later) applications.
Small library to abstract sms functionalities. Quick setup for any sms provider and very simple wrapper for the widely used sms providers. LiteXSms uses the least common denominator of functionality between the supported providers to send sms solution. Abstract interface to implement any kind of basic sms services. Having a default/generic implementation to wrap the Twilio, Plivo, Nexmo, Sinch. A sms abstraction.
Very simple configuration in advanced ways. Purpose of this package is to bring a new level of ease to the developers who deal with different sms provider integration with their system and implements many advanced features. You can also write your own and extend it also extend existing providers. Easily migrate or switch between one to another provider with no code breaking changes.
LiteXSms is an interface to unify the programming model for various sms providers. The Core library contains all base interfaces and tools. One should install at least one other LiteXSms package to get sms implementation.
- Async compatible
- Thread safe, concurrency ready
- Multiple provider support (using provider factory)
- Obsolete sync methods
- Interface based API to support the test driven development and dependency injection
- Leverages a provider model on top of ILiteXSmsSender under the hood and can be extended with your own implementation
- Voice Sms
Choose one kinds of sms provider type that you needs and install it via Nuget. To install LiteXSms, run the following command in the Package Manager Console
PM> Install-Package LiteX.Sms.Twilio
PM> Install-Package LiteX.Sms.Plivo
PM> Install-Package LiteX.Sms.Nexmo
PM> Install-Package LiteX.Sms.Sinch
Different types of sms provider have their own way to config. Here are samples that show you how to config.
{
//LiteX Twilio Sms settings
"TwilioConfig": {
"AccountSid": "--- REPLACE WITH YOUR Twilio SID ---",
"AuthToken": "--- REPLACE WITH YOUR Twilio Auth Token ---",
"FromNumber": "--- REPLACE WITH Twilio From Number ---",
"EnableLogging": true
},
//LiteX Plivo Sms settings
"PlivoConfig": {
"AuthId": "--- REPLACE WITH YOUR Plivo Account SID ---",
"AuthToken": "--- REPLACE WITH YOUR Plivo Auth Token ---",
"FromNumber": "--- REPLACE WITH Plivo From Number ---",
"EnableLogging": true
},
//LiteX Nexmo Sms settings
"NexmoConfig": {
"ApiKey": "--- REPLACE WITH YOUR Nexmo ApiKey ---",
"ApiSecret": "--- REPLACE WITH YOUR Nexmo ApiSecret ---",
"ApplicationId": "--- REPLACE WITH YOUR Nexmo ApplicationId ---",
"ApplicationKey": "--- REPLACE WITH YOUR Nexmo ApplicationKey ---",
"FromNumber": "--- REPLACE WITH Nexmo From Number ---",
"EnableLogging": true
},
//LiteX Sinch Sms settings
"SinchConfig": {
"ApiKey": "--- REPLACE WITH YOUR Sinch ApiKey ---",
"ApiSecret": "--- REPLACE WITH YOUR Sinch ApiSecret ---",
"FromNumber": "--- REPLACE WITH Sinch From Number ---",
"EnableLogging": true
}
}
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
#region LiteX Sms (Twilio)
// 1. Use default configuration from appsettings.json's 'TwilioConfig'
services.AddLiteXTwilioSms();
//OR
// 2. Load configuration settings using options.
services.AddLiteXTwilioSms(option =>
{
option.AccountSid = "";
option.AuthToken = "";
option.FromNumber = "";
option.EnableLogging = true;
});
//OR
// 3. Load configuration settings on your own.
// (e.g. appsettings, database, hardcoded)
var twilioConfig = new TwilioConfig()
{
AccountSid = "",
AuthToken = "",
FromNumber = "",
EnableLogging = true
};
services.AddLiteXTwilioSms(twilioConfig);
#endregion
#region LiteX Sms (Plivo)
// 1. Use default configuration from appsettings.json's 'PlivoConfig'
services.AddLiteXPlivoSms();
//OR
// 2. Load configuration settings using options.
services.AddLiteXPlivoSms(option =>
{
option.AuthId = "";
option.AuthToken = "";
option.FromNumber = "";
option.EnableLogging = true;
});
//OR
// 3. Load configuration settings on your own.
// (e.g. appsettings, database, hardcoded)
var plivoConfig = new PlivoConfig()
{
AuthId = "",
AuthToken = "",
FromNumber = "",
EnableLogging = true
};
services.AddLiteXPlivoSms(plivoConfig);
#endregion
#region LiteX Sms (Nexmo)
// 1. Use default configuration from appsettings.json's 'NexmoConfig'
services.AddLiteXNexmoSms();
//OR
// 2. Load configuration settings using options.
services.AddLiteXNexmoSms(option =>
{
option.ApiKey = "";
option.ApiSecret = "";
option.ApplicationId = "";
option.ApplicationKey = "";
option.FromNumber = "";
option.EnableLogging = true;
});
//OR
// 3. Load configuration settings on your own.
// (e.g. appsettings, database, hardcoded)
var nexmoConfig = new NexmoConfig()
{
ApiKey = "",
ApiSecret = "",
ApplicationId = "",
ApplicationKey = "",
FromNumber = "",
EnableLogging = true
};
services.AddLiteXNexmoSms(nexmoConfig);
#endregion
#region LiteX Sms (Sinch)
// 1. Use default configuration from appsettings.json's 'SinchConfig'
services.AddLiteXSinchSms();
//OR
// 2. Load configuration settings using options.
services.AddLiteXSinchSms(option =>
{
option.ApiKey = "";
option.ApiSecret = "";
option.FromNumber = "";
option.EnableLogging = true;
});
//OR
// 3. Load configuration settings on your own.
// (e.g. appsettings, database, hardcoded)
var sinchConfig = new SinchConfig()
{
ApiKey = "",
ApiSecret = "",
FromNumber = "",
EnableLogging = true
};
services.AddLiteXSinchSms(sinchConfig);
#endregion
// add logging (optional)
services.AddLiteXLogging();
}
}
/// <summary>
/// Customer controller
/// </summary>
[Route("api/[controller]")]
public class CustomerController : Controller
{
#region Fields
private readonly ILiteXSmsSender _smsSender;
#endregion
#region Ctor
/// <summary>
/// Ctor
/// </summary>
/// <param name="smsSender"></param>
public CustomerController(ILiteXSmsSender smsSender)
{
_smsSender = smsSender;
}
#endregion
#region Methods
/// <summary>
/// Get Sms Provider Type
/// </summary>
/// <returns></returns>
[HttpGet]
[Route("get-sms-provider-type")]
public IActionResult GetSmsProviderType()
{
return Ok(_smsSender.SmsProviderType.ToString());
}
/// <summary>
/// Send sms
/// </summary>
/// <param name="toPhoneNumber">To phone number</param>
/// <param name="messageText">message text</param>
/// <returns></returns>
[HttpPost]
[Route("send-sms")]
public async Task<IActionResult> SendSms(string toPhoneNumber, string messageText)
{
toPhoneNumber = toPhoneNumber ?? "+919426432254";
messageText = messageText ?? "I am LiteX Sms!";
// async
var result = await _smsSender.SendSmsAsync(toPhoneNumber, messageText);
// sync
//var result = _smsSender.SendSms(toPhoneNumber, messageText);
return Ok(result);
}
#endregion
}
- Twilio
- Plivo
- Nexmo
- Sinch
- Send Sms
- [] Voice Sms
- [] Send Bulk Sms
- .NET Standard 2.1 support
- .NET 5.0 support
- Remove sync methods
- Bulk Sms
Feel free to request an issue on github if you find bugs or request a new feature. Your valuable feedback is much appreciated to better improve this project. If you find this useful, please give it a star to show your support for this project.
Reach out to me at one of the following places!
- Email βοΈ at
toaashishpatel@gmail.com
- NuGet π¦ at
@iamaashishpatel
- Ashish Patel - A-Patel
Website | Medium | NuGet | GitHub | Microsoft | Tumblr | ||||
---|---|---|---|---|---|---|---|---|---|
If you find this project useful β or just feeling generous, consider buying me a beer or a coffee. Cheers! π» β
PayPal | BMC | Patreon |
---|---|---|
This project is licensed under the MIT License - see the LICENSE file for details.