1

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

我有很多文件,我从网上提取了很多东西。我只需将链接拖到我的桌面上,它会在其中生成一个 .lnk 文件。

我想创建一个 hazel + apple 脚本来查找这些 .lnk 文件并发送一封电子邮件,其中包含附加到我的印象笔记电子邮件地址的链接文件。

任何建议,将不胜感激。

4

1 回答 1

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,添加第二个动作以将文件移动到文件夹。如果不是,您可能会一遍又一遍地收到相同的文件。

在此处输入图像描述

于 2013-01-13T01:46:23.923 回答