Applescript バックグランドでメール送信
以下のようなApplescriptがあります。
ファイルを開くと自動でメールを送信する物です。
件名:
あいうえお
本文:
かきくけこ
宛先:
xxxxx@xxxxx.xx
icalを使って定時送信をしているのですが、以下のスクリプトですと、起動するたびにメール作成の画面がフォーカスされてしまいます。常時バックグランドで処理をしたいのですがどうすればいいでしょうか。
------------------------------------------------
tell application "Mail"
set newMessage to make new outgoing message with properties {subject:"あいうえお", content:"かきくけこ", visible:true}
tell newMessage to make new to recipient at end of to recipients with properties {address:"xxxxx@xxxxx.xx"}
end tell
tell application "System Events"
tell application process "Mail" to set frontmost to true
keystroke "T" using {command down, shift down}
end tell
tell application "System Events"
tell application process "Mail" to set frontmost to true
keystroke "D" using {command down, shift down}
end tell
------
お礼
ありがとうございました。ばっちりできました。 Macの基本知識が乏しいのでまずそこから勉強したいと思います。