在接收期间,我需要使用applescript来处理电子邮件的正文。在使用Outlook 2011时,如何获取电子邮件正文?
我对Applescript完全陌生。
任何有关在Outlook 2011中使用Applescript的教程或此问题的初学者代码都将非常有帮助。
发布于 2011-07-14 04:24:33
set theText to string
tell application "Microsoft Outlook"
set messages to selection
repeat with this_message in messages
set theText to content of this_message
end repeat
end tell现在theText有了消息的内容。
https://stackoverflow.com/questions/6652979
复制相似问题