|
|
|
|
|
|
GoDaddy - SMTP Server Configurations - ASP.NET
|
|
|
|
|
|
|
InnerException: Mailbox name not allowed. The server response was: Sorry, that domain isn't in my list of allowed rcpthosts.
|
|
Solution: The configurations that you should use in the host settings are:
<system.net>
<mailSettings>
<smtp from="username@domain.com">
<network
host="smtpout.secureserver.net"
port="25"
userName="username@domain.com"
password="yourpassword" />
</smtp>
</mailSettings>
</system.net>
Please note that SMTP Authentication sould be basic (anonymous will not work).
Related Article: Send Email From ASP.NET 2.0
|
|
|
|
|
|