使用 applescript 获取 outlook 帐户的全名
Get full name of outlook account with applescript
如何使用 applescript 在 microsoft outlook 中获取 outlook 帐户的名称
我试过了
告诉应用程序 "Microsoft Outlook"
将名称设置为(获取帐户)的名称
--使用 html 代码创建 HTML 签名
使用属性 {name:"Official Signature" 创建新签名,
content:html_content}
结束告诉
但由于无法获取帐户名称而出错。帐户是 class,名称是 属性
对于可能觉得这有用的任何人:
tell application "Microsoft Outlook"
set theAccount to the full name of the first exchange account
--adapted from above comment account says it is an integer
get the full name of every exchange account
end tell
如何使用 applescript 在 microsoft outlook 中获取 outlook 帐户的名称 我试过了 告诉应用程序 "Microsoft Outlook" 将名称设置为(获取帐户)的名称 --使用 html 代码创建 HTML 签名 使用属性 {name:"Official Signature" 创建新签名, content:html_content} 结束告诉 但由于无法获取帐户名称而出错。帐户是 class,名称是 属性
对于可能觉得这有用的任何人:
tell application "Microsoft Outlook"
set theAccount to the full name of the first exchange account
--adapted from above comment account says it is an integer
get the full name of every exchange account
end tell