我在2013年的Exchange服务器中创建了一个传输规则,它将在电子邮件正文之上添加一个警告文本到所有外部传入的电子邮件中。这是为了提醒员工,当它有网站链接和附件,可能是有害的外部电子邮件潜在的风险。案文如下:
CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
现在,当用户将回复电子邮件时,我希望在Exchange
我遇到过一些宏,当你在电子邮件中使用“附件”(或任何其他你想要的词)时,它们会检查是否有附件,例如:
Public Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim vList As Variant
Dim answer As Integer
Dim i As Integer
vList = Array("attached", "attachment")
If Item.Attachments.Count = 0
我有这段代码给一个vba outlook宏来回复所有。 Sub my_test()
Dim objItem As Object
Dim mail As MailItem
Dim replyall As MailItem
Dim templateItem As MailItem
For Each objItem In ActiveExplorer.Selection
If objItem.Class = olMail Then
Set mail = objItem
Set replyall = mail.replyall
我们有一个python脚本,使用exchangelib回复传入的电子邮件。用户A向我们发送一封可以包含图片/图形的电子邮件(例如,签名行中的公司徽标)。我们的脚本能够回复他的邮件,用户A将得到我们的回复。不幸的是,原始邮件中嵌入的图片/图形现在是一个附件,而不是嵌入的图片。下面是我们使用的代码:
origmsg.reply(
subject='Re: ' + origmsg.subject,
body="This is my reply to your inquiry...."
)
我理解,对于新的消息,HTML代码需要包括对附件
我试图使用 api将电子邮件项作为附件添加到电子邮件草稿中,其中我将该项作为 api的响应提供,但我收到的错误如下:
@odata.id, @odata.context, @odata.etag
"The annotation 'odata.context' was found. This annotation is either not recognized or not expected at the current position."
&如果手动删除这两个注释,就会得到这些变量的错误。
ReceivedDateTime, SentDateTime