Create New Mail and Paste Clipboard in Body

Can anyone help me create a simple Apple script?!?

All it needs to do is…

Activate Mail
Create a new mail message
Paste the clipboard (contents) into the BODY field.

Thanks in advance.
David

You might try this:

tell application "Mail"
	activate
	make outgoing message with properties {content:the clipboard, visible:true}
end tell

Hope this helps.

Script tested using Mac OS 10.4.11, Mail 2.1.3, and AppleScript 2.1.2

Awesome thanks.