Spoleto.SMS.Extensions.Smsc 1.4.0

dotnet add package Spoleto.SMS.Extensions.Smsc --version 1.4.0
NuGet\Install-Package Spoleto.SMS.Extensions.Smsc -Version 1.4.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Spoleto.SMS.Extensions.Smsc" Version="1.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Spoleto.SMS.Extensions.Smsc --version 1.4.0
#r "nuget: Spoleto.SMS.Extensions.Smsc, 1.4.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Spoleto.SMS.Extensions.Smsc as a Cake Addin
#addin nuget:?package=Spoleto.SMS.Extensions.Smsc&version=1.4.0

// Install Spoleto.SMS.Extensions.Smsc as a Cake Tool
#tool nuget:?package=Spoleto.SMS.Extensions.Smsc&version=1.4.0

Spoleto.SMS

alternate text is missing from this package README image alternate text is missing from this package README image Build

Incorporate SMS functionality into your .NET application using a versatile solution that ensures maintainable architecture and provides access to various delivery providers (e.g., SMSC, SmsTraffic, GetSms).
This project supports .NET Standard 2.0, .NET 7, and .NET 8.

https://github.com/spoleto-software/Spoleto.SMS

Quick setup

Begin by installing the package through the NuGet package manager with the command:
Install-Package Spoleto.SMS.

Getting started

To send an SMS message, you will engage with three key elements:

  • SmsMessage: This represents the actual content, the recipients and the sender of the SMS that you wish to send;
  • SmsService: This is the mechanism through which the SMS is dispatched;
  • SmsProvider: This refers to the SMS delivery provider.

Initially, you create the content of the SmsMessage, set the recipients and the sender.
Afterward, this message is handed over to the SmsService.
Finally, the SmsService dispatches the message through the pre-configured SmsProvider.

SmsMessage

SmsMessage contains your message details:

  • From: The phone number or another ID that will appear as the sender;
  • To: The phone numbers of the intended recipients (separated by semicolons ; if several);
  • Body: The content of the SMS message;
  • IsAllowSendToForeignNumbers: A flag indicating whether the message can be sent to international numbers.
  • ProviderData: Additional data for the SMS provider.

Example of SmsMessage:

var smsMessage = new SmsMessage("SMS content", "Sender number/ID", "Recipients numbers");

// or with list of recipients:
var listOfRecipients = new List<string> { "Recipient number #1", "Recipient number #2" };
var smsMessage = new SmsMessage("SMS content", "Sender number/ID", listOfRecipients);

// or with additional provider data:
var providerData = new List<SmsProviderData>
{
    new(SmsTrafficProviderData.IgnorePhoneFormat, true)
};
var smsMessage = new SmsMessage("SMS content", "Sender number/ID", "Recipients numbers", providerData: providerData);

// or with additional provider data using WithProviderData method:
var smsMessage = new SmsMessage("SMS content", "Sender number/ID", "Recipients numbers");
smsMessage.WithProviderData(SmsTrafficProviderData.IgnorePhoneFormat, true);

SmsProvider

SmsProvider is the underlying mechanisms that enable the actual transmission of SMS messages. When you incorporate Spoleto.SMS into your application, it's mandatory to install at least one of the available providers for message dispatch capabilities.

The providers come as pre-configured NuGet packages:

If you wish to add a custom provider, you can do it by implementing the interface Spoleto.SMS.Providers.ISmsProvider or the abstract class Spoleto.SMS.Providers.SmsProviderBase.

SmsService

The SmsService acts as the service with which you communicate to dispatch your messages. To instantiate the service, you can use the Spoleto.SMS.SmsServiceFactory, which serves as a factory for creating service instances.

Example of creating SmsService using SmsServiceFactory:

var smsService = new SmsServiceFactory()
    .WithOptions(options =>
    {
        options.DefaultFrom = "Default Sender ID";
        options.DefaultProvider = SmscProvider.ProviderName;
    })
    .AddSmsc("SMSC_LOGIN", "SMSC_PASSWORD")
    .AddGetSms("GetSmsLogin", "GetSmsPassword")
    .AddSmsTraffic("SmsTrafficLogin", "SmsTrafficPassword")
    .Build();
SmsService Overview

The factory provides you with three essential methods:

  • WithOptions(): This method allows you to specify the SMS service settings:
    • DefaultFrom: This setting allows you to assign a default sender phone number or another ID, so you do not need to to specify it for each individual message. Note that this default is overridden if a sender phone number is explicitly provided in the SmsMessage.
    • DefaultProvider: This is where you specify the default SMS provider for sending SMS messages. Since it's possible to set up multiple SMS providers, it's important to point out which one you prefer for default use.
  • AddProvider(): With this method, you can add the SMS provider that will be utilized for SMS message transmission.
  • Build(): This method is used to generate a new instance of the SmsService.

For AddProvider(), the method expects a SMS provider instance, e.g.: AddProvider(new SmscProvider(options)). However, direct usage of this method is generally unnecessary since the SMS providers include extension methods for registration. For instance, the SMSC provider provides the AddSmsc() extension method that simplifies its registration.

The Build() function straightforwardly creates a new SmsService instance.

It is only necessary to create the SMS service once and thereafter it can be reused throughout your application.

Now you have an instance of the SmsService.
So, you're ready to begin sending SMS messages:

var smsService = new SmsServiceFactory()
    .WithOptions(options =>
    {
        options.DefaultFrom = "Default Sender ID";
        options.DefaultProvider = SmscProvider.ProviderName;
    })
    .AddSmsc("SMSC_LOGIN", "SMSC_PASSWORD")
    .AddGetSms("GetSmsLogin", "GetSmsPassword")
    .AddSmsTraffic("SmsTrafficLogin", "SmsTrafficPassword")
    .Build();

var smsMessage = new SmsMessage("SMS content", "Sender number/ID", "Recipients numbers");

var result = smsService.Send(smsMessage);

// or async:
var result = await smsService.SendAsync(smsMessage);

// and then you can additionally check a status of SMS delivery:
var status = smsService.GetStatus("id", "phoneNumber");

// or async:
var status = await smsService.GetStatusAsync("id", "phoneNumber");

If you want to send message through the particular SMS provider, you need to specify it as the first argument:

var result1 = smsService.Send(SmsProviderName.GetSMS, smsMessage);
var result2 = smsService.Send(SmsProviderName.SmsTraffic, smsMessage);

// or async:
var result1 = await smsService.SendAsync(SmsProviderName.GetSMS, smsMessage);
var result2 = await smsService.SendAsync(SmsProviderName.SmsTraffic, smsMessage);

Dependency Injection

To integrate Spoleto.SMS into Microsoft Dependency injection framework, you should utilize the Spoleto.SMS.Extensions.Messaging NuGet package. This package provides an extension method for the IServiceCollection interface, which register the SmsService as a scoped service.

The extentions for SMS providers come as pre-configured NuGet packages:

After ensuring that the Spoleto.SMS.Extensions.Messaging package with at least one SMS provider package are installed from NuGet, you can proceed with the registration of Spoleto.SMS within the Startup.cs or your DI configuration file in the following manner:

public void ConfigureServices(IServiceCollection services)
{
    // Other DI registrations...

    // Register Spoleto.SMS as a scoped service:
    services.AddSMS(SmscProvider.ProviderName)
        .AddSmsc("SMSC_LOGIN", "SMSC_PASSWORD")
        .AddGetSms("GetSmsLogin", "GetSmsPassword")
        .AddSmsTraffic("SmsTrafficLogin", "SmsTrafficPassword");
    
    // or:
    services.AddSMS(options =>
    {
        options.DefaultFrom = "Default Sender ID";
        options.DefaultProvider = SmscProvider.ProviderName;
    })
    .AddSmsc("SMSC_LOGIN", "SMSC_PASSWORD")
    .AddGetSms("GetSmsLogin", "GetSmsPassword")
    .AddSmsTraffic("SmsTrafficLogin", "SmsTrafficPassword");

    // Continue with the rest of your service configuration...
}

Injecting the SMS Service into Your Classes

Once Spoleto.SMS has been registered with your Dependency Injection framework, you can facilitate the injection of the SMS service into any class within your application.

Inject the ISmsService interface into the constructors of the classes where you want to use SMS functionality:

public class YourSmsSender
{
    private readonly ILogger<YourSmsSender> _logger;
    private readonly ISmsService _smsService;

    public YourSmsSender(ILogger<YourSmsSender> logger, ISmsService smsService)
    {
        _logger = logger;
        _smsService = smsService;
    }

    public void Send(string from, string to, string content)
    {
        // create a SmsMessage
        var smsMessage = new SmsMessage(content, from, to);

        // send the SmsMessage using the default SMS provider:
        var result = await _smsService.SendAsync(message);

        // or send the SmsMessage using the specified SMS provider:
        var result1 = await _smsService.SendAsync(SmsProviderName.GetSMS, message);
        var result2 = await _smsService.SendAsync(SmsProviderName.SmsTraffic, message);

        // log the result:
        _logger.LogInformation("Sent to {to} with result: {result}", message.To, result.Success);
    }
}

SmsService extensions

There are several extensions for ISmsService that can help you to send messages.

GetProviderForPhoneNumber Method

ISmsProvider? GetProviderForPhoneNumber(this ISmsService smsService, string phoneNumber, bool returnDefaultIfNotFound = true, bool isAllowSendToForeignNumbers = false);

Description:
This extension method is designed for selecting a suitable SMS provider based on the provided phone number.

Parameters:

  • smsService: The instance of the ISmsService which this method extends.
  • phoneNumber: The target phone number for which an SMS provider needs to be picked. Must be provided as a non-null and non-empty string.
  • returnDefaultIfNotFound (optional): A boolean flag indicating whether to return the default provider in case none is found specifically for the given phone number. Defaults to true.
  • isAllowSendToForeignNumbers (optional): A boolean flag indicating whether the message can be sent to international numbers. Defaults to false.

Returns:
An instance of ISmsProvider that is suitable for the provided phone number. If no suitable provider is found and returnDefaultIfNotFound is set to true, the default provider will be returned. If set to false, the method returns null.

Exceptions:

  • ArgumentNullException: If phoneNumber is null or an empty string.

Usage Example:

// Assume smsService is an instance of ISmsService:
var uzbekSmsProvider = smsService.GetProviderForPhoneNumber("+998111111111");

This code returns a suitable SMS provider or the default provider, if no suitable provider is found for the provided phone number.

SendUsingSuitableProvider Method

void SendUsingSuitableProvider(this ISmsService smsService, SmsMessage message, bool sendUsingDefaultIfNotFound = true);

Description:
This extension method makes easier the sending of an SMS message using a suitable provider that is selected based on the phone number.

Parameters:

  • smsService: The instance of the ISmsService which this method extends.
  • message: An instance of SmsMessage that holds all necessary data for the SMS to be sent, such as the text content, the recipients and the sender.
  • sendUsingDefaultIfNotFound (optional): Specifies whether to send the message using the default provider if no suitable provider is found for the provided phone number. Defaults to true.

Returns:
This method does not return a value, indicating a void return type.

Exceptions:

  • ArgumentException: If no suitable SMS provider is found for the provided phone number and sendUsingDefaultIfNotFound is set to false, an ArgumentException is thrown with a message indicating the inability to find a suitable provider.

Usage Example:

var message = new SmsMessage("SMS content", "Sender number/ID", "Recipients numbers");

// Assume smsService is an instance of ISmsService:
var result = smsService.SendUsingSuitableProvider(message);

This code sends the SMS using a suitable provider that is selected based on the phone number with the flag sendUsingDefaultIfNotFound is set to its default value, true, which could be omitted in the method call.

SendUsingSuitableProviderAsync Method

Description:

Task SendUsingSuitableProviderAsync(this ISmsService smsService, SmsMessage message, bool sendUsingDefaultIfNotFound);

Asynchronous version for the method SendUsingSuitableProvider.
This method sends messages asynchronously.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.4.0 97 3/27/2024
1.3.5 80 3/27/2024
1.3.4 83 1/22/2024
1.3.3 183 11/24/2023
1.3.2 107 11/23/2023
1.3.1 105 11/23/2023
1.3.0 110 11/22/2023
1.2.1 107 11/21/2023
1.2.0 84 11/21/2023
1.1.1 99 11/20/2023
1.1.0 99 11/20/2023
1.0.3 103 11/17/2023
1.0.2 84 11/17/2023