Microsoft Outlook 2001 Question - Script to send email

I have a question about MS Outlook 2001. I am able to create an email with a recipient and attach a document to the mail using Applescript. The only problem I have is to click on the SEND button so that the mail canbe sent out. I looked at the “Outlook 2001 Dictionary” and found nothing that can help me. Does anyone know how I can send this email out?

Thanks In advance for your help.

morrismui,

You can do this by adding “without display” to the end of your CreateMail command.

tell application "Microsoft Outlook"
	CreateMail recipients theRecipients Subject theSubject Attachemnts theAttachemntList without Display
end tell

~Ross

Thank you Ross…Worked