Try this code (inspired from one of ramani's faqs):
o=createobject("outlook.application"
oitem=o.createitem(0)
oitem.subject="Hyperlink test"
oitem.to="destination@far_away.com"
** To send copy to addresses..
oItem.htmlbody='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">'
oitem.htmlbody=oItem.body+'<HTML><HEAD><TITLE></TITLE>'+CHR(13)
oitem.htmlbody=oItem.body+'<META http-equiv=Content-Type content="text/html; charset=iso-8859-2">'+CHR(13)
oitem.htmlbody=oItem.body+'<META content="MSHTML 6.00.2600.0" name=GENERATOR>'+CHR(13)
oitem.htmlbody=oItem.body+'<STYLE></STYLE>'+CHR(13)
oitem.htmlbody=oItem.body+'</HEAD>'+CHR(13)
oitem.htmlbody=oItem.body+'<BODY>'+CHR(13)
oitem.htmlbody=oItem.body+'<P>click <FONT size=2><A href="
</FONT></P></BODY></HTML>'+CHR(13)
oitem.send
o=.null.
In my opinion, you have to create the message in outlook, view its source and modify it accordingly (in this case I changed "
to "here!"

.
HTH
Good luck!