Reputation: 248
I'm a newbie at c#, but I'm trying to make a notification API that sends email notifications to authenticated users, much like the way Slack sends email notifications when you're away from the app and you've been mentioned or received DMs. I'm using vscode not Visual Studio, so it seems more challenging. The API is going to be used by a web app.
I am firmly convinced that there are tutorials on making this exact API, but I need help finding them. I'd really appreciate it if someone could tell me where to find tutorials on making an email and SMS notification API using C#. Alternatively, I will appreciate a walkthrough on how to create this API.
So far, I have found this tutorial useful: https://learn.microsoft.com/en-us/training/modules/build-web-api-aspnet-core/9-summary. But my question is does anyone know a tutorial that directly targets building an email notification API in C# (not a todo API or other kinds of API)?
Upvotes: 0
Views: 1846
Reputation: 76
notification usual consist of parts:
You could develop own variant - last part could be hard to arrange, because of email box could be blocked in case when lot of messages are going to be send in short time period. sms(twilio), twitter or other services are paible.
You could find and use existing (usual paible) notification service. This service could provide you part of above described points (templates managment, template data processor etc). you just need to send those dynamic data to service api - rest will be executed on service server (aka: mailchimp).
Upvotes: 1