我正在尝试创建一个 Applescript 用于 Outlook 11 for Mac 中的外发电子邮件,以根据发件人地址动态设置邮件中的电子邮件签名。我在 Outlook 中有多个帐户,并想根据我正在使用的帐户更改签名。下面是我一直在尝试的代码,但没有任何成功。有什么建议吗?
tell application "Microsoft Outlook"
if message sender contains {name:"emailaddress"} then
set the message signature to signature {name:"signaturename"}
else
set the message signature to signature {name:"signaturename2"}
end if
end tell