I don't care which SMS Text service to use, I just need an example of how to get this working with ASP.Net Zero. I'm happy to use Twilio or any popular service provider. So, can anyone provide some guidance or examples on how to get SMS working with ASP.Net Zero
1 Answer(s)
-
0
Hi Mitch, There's nothing special about sending SMS with AspNet Zero then a scratch project. Let's speak particular in Twilio. When I checked their API here ; <a class="postlink" href="https://www.twilio.com/docs/api/messaging/send-messages">https://www.twilio.com/docs/api/messaging/send-messages</a> I see that they have a Web API that accepts POST reuest. So you need to make a POST request . This function can be implemented in an application service.
Read their doc <a class="postlink" href="https://www.twilio.com/docs/quickstart/csharp/programmable-sms">https://www.twilio.com/docs/quickstart/ ... mmable-sms</a>