Entourage and droplet

Hi boys!

I wrote a droplet wich must send a message with attachment.
The subject, content should be name of attachment

so far only woks this script:

on open _selection
tell application “Microsoft Entourage”
make new outgoing message with properties {recipient:“Dmitri.Martirosian@blabla”, subject:_selection, content: _selection, attachment:_selection}
set messID to the result
send messID
beep
end tell
end open

After searching in fforum looks like the part of problem is solve

on open _selection
set e_mail to “Dmitri.Martirosian@blabla”
set attachment_name to name of (info for (_selection’s item 1))
tell application “Microsoft Entourage”
make new outgoing message with properties {recipient:e_mail, subject:attachment_name, content:attachment_name, attachment:_selection}
set messID to the result
send messID
beep
end tell
end open

but only one thing, how can get the list of attachments in content?