- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们已经运行了一段时间的新系统进行测试,并将电子邮件创建到一个文件夹中,这样他们就不会意外地发送给客户。现在我们打开了实时电子邮件发送,我们遇到了发送问题。
我正在使用 ActionMailer.NET,创建和发送电子邮件的代码如下。我不会包括 View :
EmailResult x = new EmailController().EmailWorkOrderForApprovalToClient(model);
System.Net.Mail.Attachment file = new System.Net.Mail.Attachment(FilePath);
x.Mail.Attachments.Add(file);
x.Deliver();
The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.57 SMTP; Client was not authenticated to send anonymous mail during MAIL FROM
<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="ClientServices@topupconsultants.com">
<specifiedPickupDirectory pickupDirectoryLocation="" />
<network defaultCredentials="false" host="smtp.office365.com" password="secret" port="587" userName="ClientServices@myco.com" />
</smtp>
</mailSettings>
Unrecognized attribute 'enableSsl'
最佳答案
在这里回答我自己的问题,基本上答案是:“不要相信错误消息”。在我尝试的所有配置中,我相信错误消息告诉我这是 Not Acceptable 。但是,我无论如何都试过了,它在发送时使用了 enableSsl 属性,这使得与 Office 365 的连接能够成功。
一个有点恼人的 IIS 错误,我会在一周内忘记,但现在很烦人。
关于email - .NET v4.0 中无法识别的属性 'enableSsl',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36082304/
我收到“远程证书根据验证程序无效”异常消息,代码如下: ServicePointManager.ServerCertificateValidationCallback = new RemoteCert
如果我更改 EnableSSL=false,我收到错误消息“SMTP 服务器需要安全连接或客户端未通过身份验证。服务器响应是:5.7.0 必须先发出 STARTTLS 命令。u78sm8177860p
我实现了我的自定义 FTP 类以与我付费购买的托管服务器一起使用。我使用 FTP 备份、恢复和更新我的应用程序。我现在想要启用 ssl 以将其投入生产。我问过我的托管公司是否支持 ssl 协议(pro
我们已经运行了一段时间的新系统进行测试,并将电子邮件创建到一个文件夹中,这样他们就不会意外地发送给客户。现在我们打开了实时电子邮件发送,我们遇到了发送问题。 我正在使用 ActionMailer.NE
如果我们只是在 c# ftpWebrequest 代码中设置 EnableSsl=true,这是否意味着正在完成安全的 ftp。或者在 iis6.0 中执行安全 ftp 的正确方法是什么。请建议 最佳
我在我的 MVC 网站中使用 ActionMailer.Net 发送电子邮件,我想从 gmail 发送,但 gmail 需要 EnableSsl=True 才能发送,但我不知道我可以在 ActionM
如标题所述,将“SmtpClient::EnableSsl”设置为 true 的“System::Net::Mail::SmtpClient”需要哪些端口? documentation on the
我是一名优秀的程序员,十分优秀!