尝试使用 IIS 7.5 上的 SMTP 使用 Asp.net 应用程序发送电子邮件时出现此错误
错误是“System.Net.Mail.SmtpFailedRecipientException:邮箱不可用。服务器响应是:System.Net.Mail.SmtpTransport.SendMail(...”
我在 web.config 中拥有的是
<system.net>
<mailSettings>
<smtp from="support@mysite.com" deliveryMethod="Network">
<network host="hostname" port="25" password="password" userName="you@yoursite.com" />
</smtp>
</mailSettings>
</system.net>
我真的不明白这里的用户名和密码应该是什么。当我输入 defaultcredentials = "true" 而不是用户名和密码时,我得到了同样的错误。与toaddress有什么关系。收件人地址是 myid@mydomain.com,适用于所有其他电子邮件等。
请指教我哪里做错了!!先感谢您!