我编写了一个脚本,它从 Active Directory 中获取信息并在 Microsoft Outlook for Mac 中创建一个新签名。
我使用以下代码来创建签名(我将省略其他代码,因为它并不真正相关):
tell application "Microsoft Outlook"
make new signature with properties {name:strName, content:contentHTML, plain text content:"", include in random:false}
end tell
其中 strName 是我从其他地方获得的签名的名称,而 contentHTML 是我在其他地方构建的 HTML 中的实际签名。
将此签名添加到 Microsoft Outlook 工作正常,但我看不到如何将我创建的签名设置为当前帐户的默认签名。我做了很多根本没有帮助的研究,我也翻了翻字典。