Add the Vonage .NET SDK

Move into the VonageSms directory that you created in the previous step and execute the following command:

dotnet add package Vonage

You can now open the VonageSms.csproj file in Visual Studio.

Note: This tutorial assumes that you are using Visual Studio. Alternatively, you could open the VonageSms folder in Visual Studio Code or another editor, but you might have to create some of the scaffolding that Visual Studio generates for you.

How to Receive SMS Delivery Receipts with ASP.NET Core MVC

Delivery receipts allow you to get information about when an SMS is delivered to a user's handset. This tutorial shows how you can receive these delivery receipt notifications in your ASP .NET application.

Steps
1
Introduction to this tutorial
2
Prerequisites
3
Create the SMS Project File
4
Add Vonage Dotnet SDK
5
Create Send SMS Model
6
Create a Send SMS View
7
Set up Startup Route
8
Add an SMS Controller
9
Add Delivery Receipt Route to Controller
10
Configure the ASP.NET App
11
Run the .NET App
12
Conclusion