这份文档还在翻译中,预期年底前完成。欢迎您提供宝贵的意见及建议。
Set Startup Route for SMS View
Open startup.cs
and navigate to the app.UseEndpoints
delegate and change Home
to Sms
in the MapControllerRoute
request. It will now look like this:
app.UseEndpoints(endpoints =>
{
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Sms}/{action=Index}/{id?}");
});
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
11
12