tell application "Mail"
--make new message
set mymail to (make new outgoing message at the beginning of outgoing messages)
--add recipient
tell mymail to make new to recipient at beginning of to recipients with properties {address:the clipboard}
--show message window (otherwise it's hidden)
set visible of mymail to true
--bring Mail to front
activate
end tell