I need to automatically forward some emails. I’m using the Entourage Forward command, but it seems to create a message in the Drafts folder, how do I get Entourage to send it?
set openingWindowBoolean to false
set htmlTextBoolean to false
set eAddress to "someone@somewhere.com"
tell application "Microsoft Entourage" to set theMsgs to current messages
try
repeat with i from (count theMsgs) to 1 by -1
tell application "Microsoft Entourage"
set theMsg to item i of theMsgs
forward theMsg ¬
to eAddress ¬
opening window openingWindowBoolean ¬
html text htmlTextBoolean
end tell
end repeat
on error number errNum
end try