I\'m referring to this guide on C# SMTP mail.
Here is my code:
MailMessage mail = new MailMessage(); SmtpClient SmtpServer = new SmtpClient(\"smtp.gm
Do you need to send securely with SSL? You could remove this statement SmtpServer.EnableSsl = true; which would not require the SSL cert.
SmtpServer.EnableSsl = true;