#Define olMailItem 0
Try
oOutlook = GetObject(,"Outlook.Application")
Catch
oOutlook = CreateObject("Outlook.Application")
Endtry
oMail = oOutlook.CreateItem(olMailItem)
oMail.To = "someone@somewhere.com"
oMail.Display() && adds predefined signature besides displaying
oMail.Body = "your text here"+oMail.Body
oMail.Send()