Click here to Skip to main content
15,884,629 members
Everything / SMTP

SMTP

SMTP

Great Reads

by JosipK, Marko Kozlina
C# and VB.NET console applications that demonstrate how to create and send an email reply with IMAP and SMTP protocols in .NET Framework
by Uzi Granot
The attached open source C# .NET library is an SMTP client implementing implicit SSL and OAuth2 protocols. The library answers the question: how to send email message using Gmail as a server. Or, how to send email message using email server that implements implicit SSL and port 465.
by DataBytzAI
Easy way to send email on Azure with no mail server, using DNS MX and SMTP
by ObiWan_MCC
A C# SMTP server (receiver).

Latest Articles

by Jason Sultana
Understanding and preventing Newline Injection
by DiponRoy
How to run FTP, SFTP, SMTP, Cache, LDAP, SSO and other servers in Docker
by Uzi Granot
The attached open source C# .NET library is an SMTP client implementing implicit SSL and OAuth2 protocols. The library answers the question: how to send email message using Gmail as a server. Or, how to send email message using email server that implements implicit SSL and port 465.
by DataBytzAI
Easy way to send email on Azure with no mail server, using DNS MX and SMTP

All Articles

Sort by Score

SMTP 

19 Dec 2011 by Robert S Sharp
I'm not sure that GC would matter very much in such a simple app.But, it's either a call to Dispose on your SmtpClient after you're done using it:smtp.Dispose();or use a using:using (SmtpClient smtp = new SmtpClient{ Host = "smtp.gmail.com", Port = 587, Credentials = new...
28 Dec 2015 by Dhruti90
MVC functionalities with web service with simple integration
21 Nov 2011 by jim lahey
Please note I don't want to take anything away from roosrj's tip which displays infinitely more in depth knowledge about the SMTP protocol than I can - as a lazy man's alternative I've always used PostCast v2.6 to test anything mail related:...
20 Nov 2011 by roosrj
A simple basic SMTP server for testing purposes
27 Feb 2012 by N8tiv
Simple SMTP E-Mail Sender in C#… Console application
23 Dec 2015 by Dhruti90
MVC functionalities with Web Service with simple integration
17 Jul 2022 by DiponRoy
How to run FTP, SFTP, SMTP, Cache, LDAP, SSO and other servers in Docker