Outlook scripting

I’m not familiar with Outlook 2001, but this is one way you might do it with Express. Their dictionaries ought to be similar, but I don’t know for sure.

tell application "Finder"
   set myList to name of every item in folder myFolder as text 
end tell  
tell application "Outlook Express"
   make new outgoing message with properties {content:myList, subject:"some subject", recipient:"an address book name"} 
end tell 

here is the dict. CreateMail: Create a new mail document

and here is my code

tell application "Finder"
set myList to name of every item in folder "Enlarged" of desktop as text end tell
tell application "Microsoft Outlook"
set subject to "Newimages"
set Body to "myList"
set Recipients to "jbradfield"
CreateMail [|subject|, |body|, |recipients|]

Any Ideas why it will not work
Outlook will open a new message but the fields are all blank