Introduction
The SMS API allows you to easily send and receive SMS messages to and from your customers over virtual numbers. However, after you send an SMS how do you validate that the Message was sent? This tutorial will show you how to receive an SMS Delivery Receipt after sending an SMS message via the Vonage SMS API.
This Tutorial provides a step-by-step guide showing you how to:
- Set up a Vonage account
- Configure your Vonage account
- Create an ASP.NET Core application
- Add the Vonage package to it
- Send an SMS
- Receive the Delivery Receipt for the SMS that you sent
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 tutorial2
Prerequisites3
Create the SMS Project File4
Add Vonage Dotnet SDK5
Create Send SMS Model6
Create a Send SMS View7
Set up Startup Route8
Add an SMS Controller9
Add Delivery Receipt Route to Controller10
Configure the ASP.NET App11
Run the .NET App12
Conclusion