Advertisement
Guest User

apple mail script to send email

a guest
Jan 20th, 2013
908
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. tell application "Mail"
  2. set theNewMessage to make new outgoing message with properties {subject:"Notify", content:"Welcome new twitter follower", visible:true}
  3. tell theNewMessage
  4. make new to recipient at end of to recipients with properties {address:"email@someone.com"}
  5. send
  6. end tell
  7. end tell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement