让Mac Hazel通过电子邮件将.lnk,doc和.xls文件发送到我的evernote帐户

时间:2013-01-12 17:42:37

标签: macos automation applescript email-integration

我正在尝试自动化并简化我的生活。我是榛子和苹果脚本的新手..

我有很多文件,我拉了很多网络的东西。我只需将链接拖到我的桌面即可生成.lnk文件。

我想创建一个hael + apple脚本来查找这些.lnk文件并发送一封电子邮件,其中包含附在我的evernote电子邮件地址的链接文件。

任何建议将不胜感激。

1 个答案:

答案 0 :(得分:4)

在Hazel中创建新规则。

如果全部..

1,分机 - 是 - 墨水

执行以下操作:

2,运行AppleScript - 嵌入式脚本

单击信息图标以编辑脚本。将此脚本粘贴到其中。使用正确的电子邮件地址,主题,内容集。

set theAttachment1 to (POSIX path of theFile)
set subject_ to "subject"
set the_content to "the_content"
tell application "Mail"
    set newMessage to make new outgoing message with properties {subject:subject_, content:the_content & return & return}
    tell newMessage

        set visible to false
        set sender to "my1@mac.com"
        make new to recipient at end of to recipients with properties {address:"their@mac.com"}
        make new attachment with properties {file name:theAttachment1} at after the last paragraph

        (* change save to send to send*)
        send --<<<<---------------- change save to send to send or send to save to save to drafts
        (* change save to send to send*)
    end tell
end tell

3,添加第二个操作以将文件移动到文件夹。如果不是,您可能会一遍又一遍地收到相同的文件。

enter image description here