Outlook 2011中的Applescript:如何为新邮件设置发件人?

时间:2018-09-27 07:49:45

标签: outlook applescript

我是新来的,还有Applescript的新手:-)

我正在尝试在Outlook 2011(OSX 10.9)中编写新邮件窗口的创建脚本。 我已经能够编写“主题”字段和“收件人”字段的脚本,但是我无法理解设置发件人(发件人)字段的方法。我已经在Google上搜索了很多,尝试了多个示例,但没有人成功。

这是到目前为止的工作脚本:

tell application "Microsoft Outlook"
    set newMessage to make new outgoing message with properties {subject:"DT"}
    make new recipient at newMessage with properties {email address:{name:"John Doe", address:"abc@tiscali.it"}}
    open newMessage
end tell

有些发件人行不起作用:

    set sendFromAddress to "abc@tiscali.it"
    set sender to "abc@tiscali.it"
    make sender at newMessage with properties {email address:{name:"John Doe", address:"abc@tiscali.it"}}

我已经浏览了Outlook的Applescript词典:它具有“发送者”属性,但是没有解释其语法或使用方法。

感谢您的帮助或提示。 :-)

0 个答案:

没有答案