邮件发送问题,asp.net
我在发送邮件时遇到问题 在 web.config 文件中,
<mailSettings>
<smtp from="[email protected]">
<network host="mail.authsmtp.com" port="25" userName="[email protected]" password="****" defaultCredentials="false"/>
</smtp>
</mailSettings>
</system.net>
我使用邮件发送代码来发送邮件
,但我收到异常,服务器响应是:5.0.0 您的电子邮件系统必须在发送邮件之前进行身份验证:XM_ERR:xxx.xxx.xxx.xxx(我的ip addr)
请让我知道如何解决这个问题。
谢谢
Im having issue with mail sending
In web.config file
<mailSettings>
<smtp from="[email protected]">
<network host="mail.authsmtp.com" port="25" userName="[email protected]" password="****" defaultCredentials="false"/>
</smtp>
</mailSettings>
</system.net>
I used mail sending code to send mail
but im getting exception as, The server response was: 5.0.0 Your email system must authenticate before sending mail:XM_ERR:xxx.xxx.xxx.xxx(my ip addr)
Please let me know how to solve this issue.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想使用 web.config 文件中的凭据吗?
如果是,请将
defaultSettings
更改为true
。如果没有,那么您必须在代码中提供有效的凭据。
Do you want to use credentials from web.config file?
If yes, than change
defaultSettings
totrue
.If not, than you must supply valid credentials in code.