Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / SMTP

SMTP

SMTP

Great Reads

by ObiWan_MCC
A C# SMTP server (receiver).
by dreamzlife
A simple SMTP mail client with xml based template factory imlementation
by roosrj
A simple basic SMTP server for testing purposes
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:...

Latest Articles

by ObiWan_MCC
A C# SMTP server (receiver).
by dreamzlife
A simple SMTP mail client with xml based template factory imlementation
by roosrj
A simple basic SMTP server for testing purposes
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:...

All Articles

Sort by Score

SMTP 

by roosrj
A simple basic SMTP server for testing purposes
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:...
by Dhruti90
MVC functionalities with web service with simple integration
by Dhruti90
MVC functionalities with Web Service with simple integration
by DiponRoy
How to run FTP, SFTP, SMTP, Cache, LDAP, SSO and other servers in Docker
by N8tiv
Simple SMTP E-Mail Sender in C#… Console application
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...