邮件发送问题,asp.net

发布于 2024-11-27 13:22:44 字数 738 浏览 0 评论 0原文

我在发送邮件时遇到问题 在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┾廆蒐ゝ 2024-12-04 13:22:44

您想使用 web.config 文件中的凭据吗?

如果是,请将 defaultSettings 更改为 true

如果没有,那么您必须在代码中提供有效的凭据。

Do you want to use credentials from web.config file?

If yes, than change defaultSettings to true.

If not, than you must supply valid credentials in code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文