Soenneker.Telnyx.Messaging 4.0.73

Prefix Reserved
dotnet add package Soenneker.Telnyx.Messaging --version 4.0.73
                    
NuGet\Install-Package Soenneker.Telnyx.Messaging -Version 4.0.73
                    
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="Soenneker.Telnyx.Messaging" Version="4.0.73" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Telnyx.Messaging" Version="4.0.73" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Telnyx.Messaging" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Telnyx.Messaging --version 4.0.73
                    
#r "nuget: Soenneker.Telnyx.Messaging, 4.0.73"
                    
#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.
#:package Soenneker.Telnyx.Messaging@4.0.73
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Telnyx.Messaging&version=4.0.73
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Telnyx.Messaging&version=4.0.73
                    
Install as a Cake Tool

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

alternate text is missing from this package README image Soenneker.Telnyx.Messaging

Send SMS and MMS messages through Telnyx and retrieve previously created messages by ID.

Installation

dotnet add package Soenneker.Telnyx.Messaging

Configuration

{
  "Telnyx": {
    "Token": "KEY..."
  }
}

Usage

using Soenneker.Telnyx.Messaging.Abstract;
using Soenneker.Telnyx.Messaging.Registrars;
using Soenneker.Telnyx.OpenApiClient.Models;

services.AddTelnyxMessagingUtilAsScoped();

MessagingOutboundMessagePayload? sent = await telnyxMessaging.Send(
    from: "+15557654321",
    to: "+15551234567",
    text: "Your verification code is 123456",
    messagingProfileId: "40017f2e-...",
    webhookUrl: "https://example.com/webhooks/telnyx",
    cancellationToken: cancellationToken);

MessagingOutboundMessagePayload? mms = await telnyxMessaging.SendMms(
    from: "+15557654321",
    to: "+15551234567",
    text: "See attached",
    mediaUrls: ["https://example.com/image.jpg"],
    messagingProfileId: "40017f2e-...",
    cancellationToken: cancellationToken);

Phone numbers should use E.164 format, and MMS media URLs must be reachable by Telnyx. Send and SendMms create billable outbound messages.

Telnyx/API failures are logged and returned as null; cancellation still propagates as OperationCanceledException. The optional webhook URL selects the message-status callback endpoint. Custom webhook headers are not supported by Telnyx's generated create-message request.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows 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
4.0.73 51 9/13/2026
4.0.72 45 9/13/2026
4.0.71 39 9/12/2026
4.0.70 38 9/12/2026
4.0.69 89 9/10/2026
4.0.68 73 9/9/2026
4.0.67 81 9/9/2026
4.0.66 72 9/9/2026
4.0.65 84 9/9/2026
4.0.64 82 9/8/2026
4.0.63 76 9/8/2026
4.0.62 75 9/8/2026
4.0.61 80 9/8/2026
4.0.60 92 9/8/2026
4.0.59 96 9/7/2026
4.0.58 90 9/7/2026
4.0.57 111 9/6/2026
4.0.56 89 9/5/2026
4.0.55 95 9/5/2026
4.0.54 96 9/4/2026
Loading failed