Question

I am using appharbor, added SendGrid as addon, They provided me smtp host - smtp.sendgrid.com port - 587 user - 32adf793-2cbf-492c-9bb9-****@apphb.com

When I use these details and try to send email via my c# code, it says, "Failure Sending Email". Please help.

Was it helpful?

Solution

AppHarbor injects the relevant SMTP configuration in your application's configuration and you can send emails right off the bat using this snippet:

var smtpClient = new SmtpClient();
smtpClient.Send(new MailMessage(...));

There are additional details here.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top