v0.2.0 - Sinch, Plivo & Telnyx providers
SmsBridge v0.2.0
This release adds three new SMS providers: Sinch, Plivo, and Telnyx.
New Providers
Sinch (UseSinch())
Global cloud communications platform. Sends via the XMS Batches REST API with Bearer token auth.
.UseSinch("sinch", o => {
o.ServicePlanId = "...";
o.ApiToken = "...";
o.From = "...";
})Plivo (UsePlivo())
US/India-based platform with global SMS coverage. Sends via the REST Message API with Basic auth.
.UsePlivo("plivo", o => {
o.AuthId = "...";
o.AuthToken = "...";
o.From = "...";
})Telnyx (UseTelnyx())
US carrier-grade communications platform. Sends via the v2 Messages API with Bearer token auth.
.UseTelnyx("telnyx", o => {
o.ApiKey = "...";
o.From = "...";
})Stats
- 70 tests passing (up from 36 in v0.1.0)
- Targets net8.0 and net9.0
Upgrading
dotnet add package SmsBridge --version 0.2.0