我正在尝试使用AppleScript
使用Microsoft Outlook 2011 for mac创建新的外发邮件。
以下示例适用于10.6.8
:
tell application "Microsoft Outlook"
set newMessage to make new outgoing message with properties {subject:"Hooray for automation"}
make new recipient at newMessage with properties {email address:{name:"Jim Shank", address:"jim.shank@example.com"}}
open newMessage
end tell
On Lion我收到以下错误:
Microsoft Outlook got an error: Can’t make class outgoing message.
有人知道那里出了什么问题吗?
我正在使用离线Outlook。
答案 0 :(得分:3)
显然,我正在使用已过期的试用版。使用注册版本,此脚本完美运行。 Boo Outlook ......我花了几个小时来研究这个问题!
答案 1 :(得分:-1)
tell application "Microsoft Outlook"
set newMessage to make new outgoing message with properties {subject:"Hooray for automation"}
make new recipient at newMessage with properties {email address:{name:"Jim Shank", address:"jim.shank@example.com"}}
send newMessage
end tell
这样,它会自动发送它。