gpt4 book ai didi

c# - 使用 gmail 地址通过 Postal 发送电子邮件

转载 作者:行者123 更新时间:2023-11-30 19:11:00 27 4
gpt4 key购买 nike

我正在尝试使用 Postal 从我的 Gmail 帐户发送电子邮件:

dynamic email = new Email("Appointment");
email.To = "sergiotapia@outlook.com";
email.Send();

我得到这个错误:

System.Net.Mail.SmtpException: {"The SMTP server requires a secure connection or the client was not authenticated.The server response was: 5.7.0 Must issue a STARTTLS command first.

有什么想法可以发送这封电子邮件吗?

这是我的 web.config 设置:

<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="asdf@adsf.ly.com">
<network host="smtp.gmail.com" port="587" defaultCredentials="false" userName="asdf@adsf.ly" password="asdf" />
</smtp>
</mailSettings>
</system.net>

最佳答案

正如错误明确指出的那样,Gmail 只接受 SSL 连接。

enableSsl="true" 添加到您的配置中。

关于c# - 使用 gmail 地址通过 Postal 发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13974210/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com