[Solved] How to send email via c# SMTP


SmtpClient SmtpServer = new SmtpClient("mail.provider.com.br");
mail.From = new MailAddress("[email protected]");
mail.To.Add("[email protected]");
mail.Subject = "Some title";
mail.Body = "YOUR TEXT GOES HERE";
SmtpServer.Port="port";
//credentials
SmtpServer.Credentials = new System.Net.NetworkCredential("[email protected]", "pa$$word");
SmtpServer.Send(mail);

1

solved How to send email via c# SMTP