Cannot use Gmail smtp from Azure Cloud Service(无法从 Azure 云服务使用 Gmail smtp)
问题描述
我通过 Gmail 的 smtp 发送电子邮件的代码:
My code for sending email through Gmail's smtp:
SmtpClient client = new SmtpClient("smtp.gmail.com", 587);
client.EnableSsl = true;
client.UseDefaultCredentials = false;
client.Credentials = new NetworkCredential("my_user_name", "my_password");
MailMessage message =
new MailMessage(new MailAddress("from...@gmail.com"), new MailAddress("to...@gmail.com"));
message.Body = "body";
message.Subject = "subject";
client.Send(message);
代码在我的本地机器上运行,当我在 Azure 作为网站"发布时.
The code works on my local machine and when I publish at Azure as "Web Site".
但是当我在 云服务" 中发布时,我得到了这个异常:
BUT when I publish in a "Cloud Service" I get this exception:
System.Net.Mail.SmtpException: The SMTP server requires a secure connection
or the client was not authenticated. The server response was:
5.5.1 Authentication Required. Learn more at
Windows Azure网站"与云服务"有什么不同会产生这种影响吗?
Is there anything that differ a Windows Azure "Web site" from a "Cloud Service" that could have this effect?
谢谢!
推荐答案
在 Web.config 中使用以下 SMTP 设置:
Use following SMTP settings in Web.config:
<system.net>
<mailSettings>
<smtp deliveryMethod="Network">
<network defaultCredentials="false" enableSsl="true" host="smtp.gmail.com" port="587" userName="xxxxxxx@gmail.com" password="xxxxxxxxxxx"/>
</smtp>
</mailSettings>
</system.net>
我认为您传递了错误的凭据.在您的用户名中使用 @gmail.com 后缀并尝试将 bodyhtml 属性也设置为 true...
I think you are passing wrong credentials. Use @gmail.com suffix in your user name and try to set bodyhtml property true also...
希望这对你有用..它总是对我正常工作..
Hope this will work for you.. It always work correctly to me..
在 这个 SO线程.
这篇关于无法从 Azure 云服务使用 Gmail smtp的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法从 Azure 云服务使用 Gmail smtp
基础教程推荐
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- SSE 浮点算术是否可重现? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01