SMTP Settings for ASP.NET Mail Send?

What server do we need ot set or configure to allow sending mail via an ASP.NET page?

I used my mail3.corl.ca but gettign the following error:
The server rejected one or more recipient addresses. The server response was: 553 sorry, that domain isn't allowed to be relayed thru this MTA (#5.7.1)

I have turned on the mail relay.
 
That is because you need to provide authentication with SMTP Auth before you can relay, the mail relay has nothingto do with relaying email, it is a "backup" mail server to catch mail if the main server goes down.
 
Yes, and you have access now.

You will be best to add the SMTP auth, as it has RDNS and will get to the destination more reliably.
 
Stephen said:
Yes, and you have access now.

You will be best to add the SMTP auth, as it has RDNS and will get to the destination more reliably.

Thanks Stephen. Where do I add that? In the ASP you mean?
 
Back
Top