I am struggling to get my SMPT emails to work in Azure Websites. This works on my local setup:
<mailSettings>
<smtp deliveryMethod="Network">
<network host="relay.myIsp.net" userName="" password="" port="25" />
</smtp>
</mailSettings>
I have changed my ISP's name to "myIsp", apart from that it is the same.
I have read a few posts about conflicting Azure.config , but I cannot find it.
I am using ActionMailer.Net, which seems great, as my Email message producer.
The application does follow through, no errors. I just get no email.
Thanks in advance.
EDIT:
SendGrid Web.config setup, so port 25 or 587 no issue on Azure Websites:
<system.net>
<mailSettings>
<smtp from="test@domain.com">
<network host="server" password="password" userName="username" port="587" />
</smtp>
</mailSettings>
</system.net>