0

我确实在几台电脑上工作,并使用我的电子邮件地址来保存我的文件的额外副本。我想为 Microsoft Word 提供 Automator 服务,该服务向我自己发送一封电子邮件,其中当前的 word 文档作为附件,标题作为主题。如果我可以在 Word 中有一个宏来做同样的事情,那也很棒。谢谢。

4

1 回答 1

1

您可以单独将其作为 AppleScript 运行,也可以将 AppleScript 插入您的 Automator 工作流程中。

    tell application "Microsoft Word"
    try
        set theTitle to name of front document
    end try
    send mail front document
end tell

tell application "Mail"
    activate
    tell its outgoing message 1
        set subject to theTitle
    end tell
end tell
于 2012-07-15T12:54:11.303 回答