This package makes it easy to send Mobtexting notifications.
Install-Package MobtextingSMSPlugin -Version 1.0.0
dotnet add package MobtextingSMSPlugin --version 1.0.0
<PackageReference Include="MobtextingSMSPlugin" Version="1.0.0" />
paket add MobtextingSMSPlugin --version 1.0.0
using System;
using MobtextingDotnet;
namespace Yourprojectnamespace
{
class message
{
static void Main(string[] args)
{
string access_token = "xxxxxxxxxxxxxxx";
Sendsms obj = new Sendsms(ACCESS_TOKEN: access_token);
string to = "9492xxxxxx";
string from = "mobsat";
string body = "hello from c# !";
char service = 'S';
obj.sendsms(to, from, body, service);
}
}
}