Sending email using gmail SMTP server using .NET

If you do not have an SMTP server of your own, you can still send SMTP authenticated emails from your .net application. Just sign up for a brand new gmail account or use your exisiting gmail account. SmtpClient obj = new SmtpClient(“smtp.gmail.com”,465); //465 is the TCP port for sending emails using gmail. 465 is generally …

Read More