Is there a script to send Drafts on a Schedule?

K

KG

I want to find a script that allows me to send items in the Drafts
folder on my Schedule. I can use the Schedule feature and make a
schedule to run at certain times and dates and send mail, but it will
not allow you to pick the Drafts folder items to be sent. So, I could
attach a script to that Schedule that would send items from the Drafts
folder when the Schedule runs.

Help?
 
M

Mickey Stevens

Here's the script you want (assuming you're referring to the local Drafts
folder, not one on an IMAP or Exchange Server).

tell application "Microsoft Entourage"
send messages in folder "Drafts"
end tell
 
Top