I am looking to create a Rule for Mail to automatically create a To
Do for iCal Here is what I was able to create so far. The script
creates the To Do very nice.
tell application "iCal"
set newTodo to make new todo at the end of todos of mailCal --
create the new ToDo item
tell newTodo -- fill the properties with the extracted information
set summary to curText
set description to curBody
set due date to ((current date) + 24 * hours)
set priority to 0
--needed help
end tell
end tell
Am looking to have it automatically set to display an alarm any
minutes before the due date.