gpt4 book ai didi

email - 发送电子邮件时出现 VBScript 错误 '80040211'

转载 作者:行者123 更新时间:2023-12-05 00:25:55 28 4
gpt4 key购买 nike

我在发送电子邮件时出现错误:
“错误‘80040211’”

这是我的代码示例-

Dim objMessage
Set objMessage = CreateObject("CDO.Message")
objMessage.Subject = "Super Service Comment - "

objMessage.From = "someone@s.com"
objMessage.To = "someone1@s.zendesk.com;someone2@s.com"
objMessage.TextBody = "Name...."

objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.office365.com" 'Name or IP of Remote SMTP Server
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'Type of authentication, NONE, Basic (Base64 encoded), NTLM
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "someone4@s.com" 'Your UserID on the SMTP server
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "******" 'Your password on the SMTP server
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 30
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 'Server port (typically 25)
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = true 'Use SSL for the connection (False or True)
objMessage.Configuration.Fields.Update
objMessage.Send

有人遇到过类似的问题吗?

最佳答案

迟到的回复,但我想我会分享我在处理同一问题时学到的东西。

从我读到的错误 80040211基本上意味着您的 SMTP 服务返回不成功。如果您确定您的服务已启动并且您可以 telnet 进入它,那么您的解决方案可能会通过查看 smtp 服务器设置而不是您的代码来解决。

就我而言,当我尝试附加文件时遇到此错误。原来消息大小的默认限制只有 2MB。当我在 IIS 的 SMTP 设置中增加这个限制时,一切都开始正常工作了。

关于email - 发送电子邮件时出现 VBScript 错误 '80040211',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23224631/

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