- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试在 VBScript 中将 MHTML 文件作为附件添加到电子邮件中时,ContentMediaType
被错误地设置为 “message/rfc822”
( RFC 822 )。据我了解,根据 Microsoft 的说法这是正确的,但根据 RFC 2557 的说法是不正确的其中指出它应该是“multipart/lated”
。这是一个问题,因为大多数(如果不是全部)邮件客户端将“message/rfc822”解释为电子邮件。由于文件扩展名 ".mht"
和 ".mhtml"
与电子邮件的任何有效文件扩展名都不匹配,因此邮件客户端会附加 "之一。 msg"
、".eml"
等添加到文件名中。当用户打开附件时,它会作为电子邮件打开,并且无法正确显示,因为 MHTML 文件和电子邮件的保存方式不同。
Sub SendEmail(FromAddress, ToAddress, Subject, Body, Attachment)
Call Err.Clear
On Error Resume Next
Schema = "http://schemas.microsoft.com/cdo/configuration/"
Set Configuration = Sys.OleObject("CDO.Configuration")
Configuration.Fields.Item(Schema + "sendusing") = 2
Configuration.Fields.Item(Schema + "smtpserver") = SMTPServer
Configuration.Fields.Item(Schema + "smtpserverport") = 25
Configuration.Fields.Item(Schema + "smtpauthenticate") = 1
' Configuration.Fields.Item(schema + "sendusername") = ""
' Configuration.Fields.Item(schema + "sendpassword") = ""
Call Configuration.Fields.Update
Set Message = Sys.OleObject("CDO.Message")
Set Message.Configuration = Configuration
Message.From = FromAddress
Message.To = ToAddress
Message.Subject = Subject
Message.HTMLBody = Body
If Not IsEmpty(Attachment) Then
'CDO.Message.AddAttachment doesn't set the correct content media type for an MHTML file.
Call Message.AddAttachment(Attachment)
End If
Call Message.Send
End Sub
当我运行此代码时,Message.Attachments.Item(1).ContentMediaType
设置为 "message/rfc822"
。如果 Attachment
(字符串)以 ".mht"
或 ".mhtml 结尾,我需要它是
(不区分大小写)。我可以使用以下代码来完成此操作。"multipart/lated"
“
If Len(Attachment) >= 4 And InStr(Len(Attachment) - 3, Attachment, ".mht", vbTextCompare) Or Len(Attachment) >= 4 And InStr(Len(Attachment) - 5, Attachment, ".mhtml", vbTextCompare) Then
Message.Attachments.Item(1).ContentMediaType = "multipart/related"
End If
由于某种未知的原因,这会取消 Message.Attachments
中的附件定义。
我已经考虑过按照 these instructions 手动添加附件,但是当我调用 Message.Attachments.Item(1).Fields.Update
时,该对象变得未定义。我认为设置附件的 ContentMediaType
会隐式调用它的 Fields
的 Update
方法,我认为这就是造成这种意外行为的原因。
如何解决此问题并发送具有 “multipart/lated”
内容类型的 MHTML 文件,同时保持正确的文件扩展名?
最佳答案
因此,您的问题是,如果附件的内容类型设置为 content-type="message/rfc822"
,至少某些电子邮件客户端会错误地保存 MHTML 附件。
首先,值得注意的是,您对问题根本原因的分析是有缺陷的。您似乎对 multipart/lated
MIME 类型发挥作用的地方感到困惑。事实上,RFC 2557没有声明与 MHTML 附件对应的正文部分必须具有 content-type="multipart/lated"
。相反,MIME 多部分/相关是 MHTML 文件本身的内部结构。引用维基百科article :
The content of an MHTML file is encoded as if it were an HTML e-mail message, using the MIME type multipart/related.
即如果您使用文本编辑器打开 MHTML 文件,您应该看到以下内容:
Content-Type: multipart/related; ...
Microsoft 声明 MHTML 文件应在 KB937912 中使用 content-type="message/rfc822"
提供。这正是当您通过 AddAttachment 方法附加此类文件时 CDO 默认执行的操作。我相信这种行为在任何方面都不违背 RFC 2557。根据 RFC:
There are a number of document formats... that specifydocuments consisting of a root resource and a number of distinctsubsidiary resources referenced by URIs within that root resource.There is an obvious need to be able to send such multi-resourcedocuments in e-mail [SMTP], [RFC822] messages.
The standard defined in this document specifies how to aggregate suchmulti-resource documents in MIME-formatted [MIME1 to MIME5] messagesfor precisely this purpose.
回顾一下,您绝对不应该将 MHTML 附件的内容类型设置为 multipart/lated
。
虽然 message/rfc822
似乎是使用 MHTML 文件的方式,但它显然会触发您在问题中描述的问题。我使用 Outlook 2010 和 OWA 2010 进行了测试,并且能够重现它。
各种电子邮件客户端用于 MHTML 附件的替代内容类型是 application/octet-stream
和 application/x-mimearchive
。这两个在我的测试中没有出现问题。
关于email - 修改 CDO.Message 对象中附件的内容类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15976836/
我尝试将 python 2.x 代码移植到 python 3。我正在努力解决的问题是 from mimetools import Message ... headers = Message(Strin
我有一个输入组件,它有三种类型的验证(required、validatorMessage、converterMessage),这个输入有自己的消息图标,整个表单有一个消息组件来显示所有组件的所有消息,
我有一个使用消息代理 (activemq) 的带有 spring 和 websockets 的 webapp。 这是我的配置类: @Configuration @EnableWebSocketMess
据我了解mbox Python 3.6 标准库中的类生成 email.message.Message 类型的旧式消息对象. 较新的类(class) email.message.EmailMessage
我使用的是mysql。 我有一个包含 userid、message_id、opened(true 或 false)、时间戳的消息表。 我希望所有未打开最近收到的 5 条消息的用户 这就是我现在拥有的:
我是 Android 的新手,发现要不断更新主视图,我必须创建一个线程来处理各种进程,然后将更新传回主视图。我决定使用 Handler 类来执行此操作。此示例中的 View 有一个用于激活代码的按钮和
我遇到了重定向符号的不同位置( > , &2 message message echo message >&2 message >&2 echo message message 对于所有表单,我得到了
我想使用 firebase 云函数发送通知,所以我尝试使用 firebase.messaging().getToken() 获取 token ,但我不断收到错误消息: TypeError: fireb
我实现了一个短信应用。现在我在使用 Oppo 设备时遇到了问题,因为无论何时收到消息,系统都会将默认应用程序更改为内置应用程序并显示此消息: For your messages security, S
我正在实现本指南:https://spring.io/guides/gs/centralized-configuration/关于Spring Cloud配置。 服务器: @EnableConfigS
我想在“匹配”之后,向所有比赛发送介绍信息。你知道一种轻松发送的方法吗?(我使用 Bluestacks) 提前致谢。问候。 最佳答案 只需传递 session.send()在session.dialo
在我们的应用程序中,我们使用 kafka 并有一个像这样的 Spring Cloud 输入流 @Component public interface SomeChannel { @Input(
这周我在通过 Node.js 库(代码相同,库版本相同等)向我的 iOS 设备发送消息时遇到了很多内部错误 很难调试,因为有时它会起作用。当我使用 for 循环发送 10 条消息时,我的设备将收到 3
我目前正在记录错误并希望获得尽可能多的描述性细节。我知道我可以捕获许多不同类型的异常,但 Exception.Message 之间有什么区别?和 Exception.InnerException.Me
我创建了一个映射到 MyBean.beansField 的表单。我使用 javax.validation.NotNull 注释来确保必须输入它。到目前为止一切正常,但错误消息如下所示: beansFi
我正在研究 Azure 服务总线。我的服务总线队列正在处理一条消息 3 次。我的消息锁定时间是5分钟。每条消息最多处理 2 分钟,但我不知道为什么队列会选择相同的消息并发送到处理,而重复的消息仅在 5
我正在使用最新的快速修复版本,即 1.6.0。我已经有针对 1.5.3 编写的代码,我想做的是将其升级到 1.6.0 我遇到的问题是,当我使用破解(msg,sessionID)方法时,它会抛出quic
当我调用 grails message()函数来查找和评估消息 key 对,它无法评估参数。 在我的 Controller 中,我调用消息函数: rejectWithError(message(cod
我使用一个小型 Spring 应用程序,其中数据库中的值很少,我想使用可变调用来检索它们。 API 在这里, @RestController @RequestMapping("/api/v1/prod
我在想在用以更好的方式,像这样: Please inform us about: 这个想法是以一种不同的方式向用户展示消息,具有更多的风格。这可能吗? 最佳答案 它们可通过 Fac
我是一名优秀的程序员,十分优秀!