如何使用 GMail 的 SMTP 服务器从 ASP.NET 站点发送电子邮件?
我想要我的ASP.NET MVC 应用程序向网站用户发送一些标准信件。出于测试目的,我没有本地 SMTP 服务器,据我所知,我的提供商也没有。所以我必须使用像GMail的SMTP这样的公共服务。
如何使用 smtp.gmail.com
和我的 GMail 帐户发送电子邮件?如果我的电子邮件是 Web.config
中添加什么内容以及编写哪些代码data-cfemail="e084928193948f8d81898ca0878d81898cce838f8d">[电子邮件受保护] 并且我的密码是 password
?
谢谢
编辑
当我尝试以下演示程序时:
class Program {
static void Main(string[] args) {
var client = new SmtpClient("smtp.gmail.com", 587) {
Credentials = new NetworkCredential("[email protected]", "puzzlehunters111"),
EnableSsl = true
};
client.Send("[email protected]", "[email protected]", "test", "testbody");
Console.WriteLine("Sent");
Console.ReadLine();
}
}
它失败并出现异常。大多数内部异常都带有此消息:
No connection could be made because the target machine actively refused it 209.85.227.109:587
此外,所有现有答案(最早的 3 个)都给了我相同的异常。我能用它做什么呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是我过去使用过的一个类:
该类需要在您的 Application_Start 事件中配置:
用法:
Here's a class I've used in the past:
The class needs to be configured in your Application_Start event:
Usage:
这可能是防火墙问题。运行代码的服务器上的防火墙可能会阻止 TCP 端口 587 上的流量。也有可能它在服务器和 Internet 之间的网络基础设施中被阻止。
This could be a firewall issue. The firewall on the server your code is running on could be blocking traffic on TCP port 587. It is also possible that it is being blocked in the network infrastructure between your server and the Internet.
使用简单的实用程序类,如下所示:
Use the simple utility class as below: