gpt4 book ai didi

c# - 部署到主机后,使用 Gmail 通过 C# 发送邮件不起作用

转载 作者:太空狗 更新时间:2023-10-30 01:29:17 27 4
gpt4 key购买 nike

我正在尝试通过 Gmail 发送邮件。当我在 localhost 上测试时,我发送邮件成功,但是当我将它上传到 web 主机时,这不起作用。我看到了这种类型的错误:

Request for the permission of type System.Net.Mail.SmtpPermission, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 failed.

每当我使用端口 25 时,都会收到以下此类错误:

The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required

下面是我发送邮件的代码。

MailMessage mail = new MailMessage("host@gmail.com","User@gamil.com");

SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
mail.Subject = "Any String"
mail.Body = mailbody;
mail.IsBodyHtml = true;
SmtpServer.Port = 587;
SmtpServer.DeliveryMethod = SmtpDeliveryMethod.Network;
SmtpServer.UseDefaultCredentials = false;
SmtpServer.Credentials = new System.Net.NetworkCredential("xyz@gmail.com","123");
SmtpServer.EnableSsl = true;

SmtpServer.Send(mail);

有什么解决办法吗?请给我建议!

最佳答案

编辑: OP 添加了对回答这个问题至关重要的额外信息,但我保留了旧答案,因为它可能仍然对某些人有帮助

新答案: This StackOverflow 问题已经回答了这个问题

旧答案:作为this StackOverflow 回答已经回答,您将 SMTP 服务器上的端口更改为 587 而不是默认值 (25),这需要提升权限导致此错误更改此:

SmtpServer.Port = 587;

为此:

SmtpServer.Port = 25;

它应该可以工作

注意:当使用 SSL 时,端口需要是 443

关于c# - 部署到主机后,使用 Gmail 通过 C# 发送邮件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52829188/

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