【发布时间】:2017-08-16 09:39:32
【问题描述】:
我在网站上复制了一些脚本,结果是 Outlook 创建了新的转发邮件,但收件人为空白。尝试了多种形式,但总是空白收件人。这是一个脚本,我只会为我手动选择的消息运行,所以我不能在应用程序中使用简单的转发规则。 有什么想法吗?
tell application "Microsoft Outlook"
repeat with eachSelectedMessage in selectedMessages
set theForwardedMessage to forward eachSelectedMessage with opening window
make new recipient at theForwardedMessage with properties {email address:{address:"recipient@somewhere.com", name:"Lumpkin Skinbark"}}
send theForwardedMessage
end repeat
end tell
【问题讨论】:
-
2017-04-26 7:32 PM CT -- 我遇到了同样的问题。我需要转发消息,但在发送之前设置收件人和主题。对主题的更改显示在“转发”窗口中,但我找不到显示新收件人的方法。
标签: outlook applescript