Serveur SMTP GRATOS avec Windows Azure
(voici mon article d’origine:
http://memoprojects.blogspot.co.uk/2012/07/send-email-for-free-with-windows-azure.html
)
From this documentation https://www.windowsazure.com/en-us/develop/net/how-to-guides/sendgrid-email-service/, here is a way to send emails for free provided it is less than 25,000 emails.

After some basic steps and checks from SendGrid that you are not a spam, you will have access to the SaaS portal:

You have access to statistics

Emails that are Bounced, Blocked, Invalid, … are presented here:

As a .Net developer, simply add a Nuget into Visual Studio:

Within your .Net code, simply use the information you filled in:

And here you go:
// Create network credentials to access your SendGrid account.
var username = "your_sendgrid_username";
var pswd = "your_sendgrid_password";
var credentials = new NetworkCredential(username, pswd);
For more info: https://www.windowsazure.com/en-us/develop/net/how-to-guides/sendgrid-email-service/
and http://sendgrid.com
Ce post vous a plu ? Ajoutez le dans vos favoris pour ne pas perdre de temps à le retrouver le jour où vous en aurez besoin :