所以我有这个脚本很棒,但我需要一个额外的选项。 我有一个针对具有特定主题的传入邮件的规则,它使用下面的脚本。是否可以将它导出到.msg以使用utf-8?
function interval = findInterval(A,B)
if B > A(1) && B < A(end)
interval = find(B < A, 1) - 1;
else
error('Interval is out of the range specified')
end
end
上面是实际脚本的子程序。
Sub MySubroutineName(Item As Outlook.MailItem)
MessageAndAttachmentProcessor Item, , True, , , , True
End Sub
答案 0 :(得分:0)
确保使用olMsgUnicode格式,而不是olMsg。