OS X Automator 脚本:将文件附加到电子邮件

OS X Automator script : attach files to an email

我目前正在创建一个 Automator Workflow 以将 Finder 中的多个文件附加到电子邮件

它似乎适用于一个文件 selected,但是当我 select 多个文件时,只有列表中的第一个被添加到电子邮件中。然而,Automator 检测到几个文件,但在将其发送到 Mail.app 时失败,如以下屏幕截图所示:

Screenshot of the error

知道在哪里可以阻止它吗?

非常感谢!

我找到了答案,我必须 运行 一个带有以下代码的 applescript :

on run {input, parameters}
    tell application "Finder" to set myList to selection as alias list
    tell application "Mail"
        tell (item 1 of input) --
            repeat with i in myList
                make new attachment with properties {file name:i} at after the last paragraph of content
            end repeat
        end tell
    end tell
    return input
end run