Send email with MailKit in .NET

.NET Framework used to use SmtpClient, which read this from the app.config/web.config file:

<mailSettings>
<smtp deliveryMethod=”Network”>
<network host=”my-host”
port=”587″
userName=”my-user”…


This content originally appeared on DEV Community and was authored by Joe Enos

.NET Framework used to use SmtpClient, which read this from the app.config/web.config file:

<mailSettings>
    <smtp deliveryMethod="Network">
      <network host="my-host" 
               port="587" 
               userName="my-user"
               password="my-password" 
               enableSsl="true"
               defaultCredentials="false" 
      />
    </smtp>
</mailSettings>

Microsoft has deprecated SmtpClient, and they recommend a library like MailKit.

MailKit is a little more verbose than the old way, but it's still reasonably straightforward. Here's how to use it:


This content originally appeared on DEV Community and was authored by Joe Enos


Print Share Comment Cite Upload Translate Updates
APA

Joe Enos | Sciencx (2021-05-22T07:28:46+00:00) Send email with MailKit in .NET. Retrieved from https://www.scien.cx/2021/05/22/send-email-with-mailkit-in-net/

MLA
" » Send email with MailKit in .NET." Joe Enos | Sciencx - Saturday May 22, 2021, https://www.scien.cx/2021/05/22/send-email-with-mailkit-in-net/
HARVARD
Joe Enos | Sciencx Saturday May 22, 2021 » Send email with MailKit in .NET., viewed ,<https://www.scien.cx/2021/05/22/send-email-with-mailkit-in-net/>
VANCOUVER
Joe Enos | Sciencx - » Send email with MailKit in .NET. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/05/22/send-email-with-mailkit-in-net/
CHICAGO
" » Send email with MailKit in .NET." Joe Enos | Sciencx - Accessed . https://www.scien.cx/2021/05/22/send-email-with-mailkit-in-net/
IEEE
" » Send email with MailKit in .NET." Joe Enos | Sciencx [Online]. Available: https://www.scien.cx/2021/05/22/send-email-with-mailkit-in-net/. [Accessed: ]
rf:citation
» Send email with MailKit in .NET | Joe Enos | Sciencx | https://www.scien.cx/2021/05/22/send-email-with-mailkit-in-net/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.