Forwarding email in Entourage

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

Bugger, I found the answer as soon as I posted this.

I set the forward command to go into a variable then used send…

			set fwdMsg to forward theMsg ¬
				to toText ¬
				opening window openingWindowBoolean ¬
				html text htmlTextBoolean
			send fwdMsg with sending later