Tag: mimekit
There is 1 post with the "mimekit" tag.
How to send emails in .NET Core with MimeKit and Mailkit
Posted on
3 min read
The ability for an application to send emails is a very common requirement. This can be for emails such as providing account information, sending marketing emails or even a password reset email. This post will cover how to send an email using MimeKit and MailKit from an ASP.NET Core MVC web application. I will use MailSlurper as a local SMTP server to test the sending of the emails. You can use any SMTP server you prefer though. Creating the ASP.NET Core MVC demo project
Read more...