Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Send iCal reminders to another email address' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Send iCal reminders to another email address
Authored by: Migs on Mar 13, '09 07:18:13AM

This is the best way: Use applescript as follows:

Open the script editor and change the code below: Save your script in computer>library>scripts>mail scripts

Then in iCal create the item and in alarm select script. Underneath script choose the script you made by browsing to it.

As follows is a sample script for you to modify:


tell application "Mail"
set newMessage to make new outgoing message with properties {subject:"This is the test subject", content:"This is the test Body"}
tell newMessage
make new to recipient at end of to recipients with properties {name:"Miguel Reznicek", address:"mreznicek@pretensa.com"}
end tell
send newMessage
end tell



[ Reply to This | # ]