代码之家  ›  专栏  ›  技术社区  ›  Steve McLeod

如何使用AppleScript,设置“To:”,“Subject:”,并附加一个文件来打开新的电子邮件?

  •  1
  • Steve McLeod  · 技术社区  · 14 年前

    为了方便我的用户报告问题,我想创建尽可能多的电子邮件。最重要的是,我想附加一个文件(日志文件)。

    如何在AppleScript中执行此操作?

    1 回复  |  直到 14 年前
        1
  •  2
  •   Steve McLeod    14 年前
    tell application "Mail"
        set theMessage to make new outgoing message with properties {visible:true, subject:"My Subject", content:"My Body"}
        tell theMessage
            make new to recipient at end of to recipients with properties {name:"Ben Waldie", address:"applescriptguru@mac.com"}
        end tell
        tell content of theMessage
            make new attachment with properties {file name:pathToFile} at after last paragraph
        end tell
    end tell