Outlook scripting

This will be my first real script if i can pull it off this is prob. real simple but i can’t get it to go I am trying to copy the names of files in a folder to an email message using Microsoft Outlook 2001 and exchange server with the subject “New files” and the recipient jbradfield@chemicon.com
i am using the createmail code but the body and recipients and subject fieldss do not fill in
Any help would be greatly appreciated

Give this format a try. I think I got this to work the other day. Evidently the “display true” or “display false” (turns into with or without Display) is required even though the dictionary makes it seem as though it is not.

tell application "Microsoft Outlook"
CreateMail Body body_text Recipients email_addresses Subject this_subject without Display
end tell

this one works but still gives an error message

tell application "Microsoft Outlook"
activate
CreateMail Subject "new images on NAIIS" Recipients "jbradfield" Body "myList"
end tell