LiteX.Sms.Core
2.0.0
See the version list below for details.
dotnet add package LiteX.Sms.Core --version 2.0.0
NuGet\Install-Package LiteX.Sms.Core -Version 2.0.0
<PackageReference Include="LiteX.Sms.Core" Version="2.0.0" />
paket add LiteX.Sms.Core --version 2.0.0
#r "nuget: LiteX.Sms.Core, 2.0.0"
// Install LiteX.Sms.Core as a Cake Addin
#addin nuget:?package=LiteX.Sms.Core&version=2.0.0
// Install LiteX.Sms.Core as a Cake Tool
#tool nuget:?package=LiteX.Sms.Core&version=2.0.0
LiteXSms
Abstract interface to implement any kind of basic sms message services (e.g. Twilio, Plivo, Sinch, Nexmo)
Add a dependency
Nuget
Run the nuget command for installing the client as,
Install-Package LiteX.Sms.Core
Install-Package LiteX.Sms.Twilio
Install-Package LiteX.Sms.Plivo
Install-Package LiteX.Sms.Sinch
Install-Package LiteX.Sms.Nexmo
Configuration
AppSettings
{
//LiteX Twilio Sms settings
"TwilioConfig": {
"AccountSid": "--- REPLACE WITH YOUR Twilio SID ---",
"AuthToken": "--- REPLACE WITH YOUR Twilio Auth Token ---",
"FromNumber": "--- REPLACE WITH Twilio From Number ---"
},
//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 ---"
},
//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 ---"
},
//LiteX Sinch Sms settings
"SinchConfig": {
"ApiKey": "--- REPLACE WITH YOUR Sinch ApiKey ---",
"ApiSecret": "--- REPLACE WITH YOUR Sinch ApiSecret ---",
"FromNumber": "--- REPLACE WITH Sinch From Number ---"
}
}
Startup Configuration
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
#region LiteX Sms
#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 = "";
});
//OR
// 3. Load configuration settings on your own.
// (e.g. appsettings, database, hardcoded)
var twilioConfig = new TwilioConfig()
{
AccountSid = "",
AuthToken = "",
FromNumber = ""
};
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 = "";
});
//OR
// 3. Load configuration settings on your own.
// (e.g. appsettings, database, hardcoded)
var plivoConfig = new PlivoConfig()
{
AuthId = "",
AuthToken = "",
FromNumber = ""
};
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 = "";
});
//OR
// 3. Load configuration settings on your own.
// (e.g. appsettings, database, hardcoded)
var nexmoConfig = new NexmoConfig()
{
ApiKey = "",
ApiSecret = "",
ApplicationId = "",
ApplicationKey = "",
FromNumber = ""
};
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 = "";
});
//OR
// 3. Load configuration settings on your own.
// (e.g. appsettings, database, hardcoded)
var sinchConfig = new SinchConfig()
{
ApiKey = "",
ApiSecret = "",
FromNumber = ""
};
services.AddLiteXSinchSms(sinchConfig);
#endregion
#endregion
}
}
Usage
Controller or Business layer
/// <summary>
/// Customer controller
/// </summary>
[Route("api/[controller]")]
public class CustomerController : Controller
{
#region Fields
private readonly ISmsSender _smsSender;
#endregion
#region Ctor
/// <summary>
/// Ctor
/// </summary>
/// <param name="smsSender"></param>
public CustomerController(ISmsSender 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 email to customer
/// </summary>
/// <param name="toPhoneNumber">To phone number</param>
/// <param name="messageText">message text</param>
/// <returns></returns>
[HttpPost]
[Route("send-sms-to-customer")]
public IActionResult SendSmsToCustomer(string toPhoneNumber, string messageText)
{
try
{
toPhoneNumber = toPhoneNumber ?? "+919426432254";
messageText = messageText ?? "I am LiteX Sms!";
_smsSender.SendSms(toPhoneNumber, messageText);
// Async
//await _smsSender.SendSmsAsync(toPhoneNumber, messageText);
return Ok();
}
catch (Exception ex)
{
return BadRequest(ex);
}
}
#endregion
}
Coming soon...
- Voice Sms
- Bulk Sms
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- No dependencies.
NuGet packages (4)
Showing the top 4 NuGet packages that depend on LiteX.Sms.Core:
Package | Downloads |
---|---|
LiteX.Sms.Twilio
Allow sending texts via Twilio. Wrapper around Twilio api to send sms messages from any type of application. Small library for manage sms with Twilio. A quick setup for Twilio Sms. Wrapper library is just written for the purpose to bring a new level of ease to the developers who deal with Twilio integration with your system. LiteXSms is simple yet powerful and very high-performance sms 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 any type of application (.NET 5, .NET Core, .NET Standard). Very simple yet advanced configuration. Minimal (one line) code configuration is required. |
|
LiteX.Sms.Plivo
Allow sending texts via Plivo. Wrapper around Plivo api to send sms messages from any type of application. Small library for manage sms with Plivo. A quick setup for Plivo Sms. Wrapper library is just written for the purpose to bring a new level of ease to the developers who deal with Plivo integration with your system. LiteXSms is simple yet powerful and very high-performance sms 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 any type of application (.NET 5, .NET Core, .NET Standard). Very simple yet advanced configuration. Minimal (one line) code configuration is required. |
|
LiteX.Sms.Sinch
Allow sending texts via Sinch. Wrapper around Sinch api to send sms messages from any type of application. Small library for manage sms with Sinch. A quick setup for Sinch Sms. Wrapper library is just written for the purpose to bring a new level of ease to the developers who deal with Sinch integration with your system. LiteXSms is simple yet powerful and very high-performance sms 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 any type of application (.NET 5, .NET Core, .NET Standard). Very simple yet advanced configuration. Minimal (one line) code configuration is required. |
|
LiteX.Sms.Nexmo
Allow sending texts via Nexmo. Wrapper around Nexmo api to send sms messages from any type of application. Small library for manage sms with Nexmo. A quick setup for Nexmo Sms. Wrapper library is just written for the purpose to bring a new level of ease to the developers who deal with Nexmo integration with your system. LiteXSms is simple yet powerful and very high-performance sms 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 any type of application (.NET 5, .NET Core, .NET Standard). Very simple yet advanced configuration. Minimal (one line) code configuration is required. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Sms provider wrapper. Simple configuration with advanced options.