1

私は自分の人生を自動化して簡素化しようとしています。私はヘーゼルとアップルのスクリプトに不慣れです。

私はたくさんのドキュメントを持っていて、ウェブの多くのものを引き出しています。リンクをデスクトップにドラッグするだけで、.lnkファイルが作成されます。

これらの.lnkファイルを検索し、リンクファイルがEvernoteのメールアドレスに添付されたメールを送信するhazel+appleスクリプトを作成したいと思います。

任意の提案をいただければ幸いです。

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、ファイルをフォルダーに移動する 2 つ目のアクションを追加します。そうしないと、同じファイルが何度も送信され続ける可能性があります。

ここに画像の説明を入力

于 2013-01-13T01:46:23.923 に答える