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.

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.