I am having a problem using SendGrid in my ASP.NET MVC application I have tried several different configurations but keep getting this error
The server committed a protocol violation The server response was:
Status Code = GeneralFailure
Here is the code:
var mail = new MailMessage(@"[email protected]", message.Destination);
mail.Subject = message.Subject;
mail.Body = message.Body;
mail.IsBodyHtml = true;
NetworkCredential credentials = new System.Net.NetworkCredential("wxxxxxxx", "Jxxxxxxxxxxx"); // using my SendGrid username and password
using (SmtpClient client = new System.Net.Mail.SmtpClient("smtp.sendgrid.net", 587))
{
client.Credentials = credentials;
try
{
await client.SendMailAsync(mail);
}
catch (SmtpException ex)
{
System.Diagnostics.Debug.WriteLine(ex.ToString());
}
}
Has anyone else had this problem or can someone tell me what I am doing wrong?
Some complementary information.