View Single Post
  #3  
Old 01-30-2006, 06:16 PM
Budgie Budgie is offline
Registered User
 
Join Date: Aug 2005
Location: New Zealand
Posts: 78
Hi shorton

I use the below, and have it set it up as follows:

tell application "System Events" to tell process "Mail"
keystroke "n" using command down
set TheAddress to "Your email address"
set theSubject to "SD Has Completed: "
tell application "Mail"
activate
set newMessage to make new outgoing message with properties {subject:theSubject}
tell newMessage
make new to recipient at end of to recipients with properties {address:TheAddress}
send
-- set visible to true --so you can edit the message
end tell
end tell
end tell


1) Cut and paste the Applescript into script editor and click "compile"

2) In the Area "Your email address" type the address where you wish the
mail to goto.

3) In the area "SD Has Completed: " type what ever you wish to show up in the subject line of your mail.

4) Save the file, name it what you will, place the file where you wish.

5) Launch "SD", click on "Options", then "Advanced", check "Run shell script after copy completes", then click
"choose" and locate your applescript that you just saved, click "OK", then click "OK",

6) your good to go

hope this helps

Budgie
Reply With Quote