Dim objOutLook As Outlook.Application
Dim objMailItem As MailItem
Set objOutLook = New Outlook.Application
Set objMailItem = objOutLook.CreateItem(olMailItem)
'then you can use the properties of the mail item, like
objMailItem.Subject = "Subject of the e mail"
objMailItem.Body = "Line 1" & vbCR & "Line2"
'then you can use the Recipients collection to add recipients, or you can use the To property:
' EITHER
objMailItem.Recipients.Add "me@domain.com"
objMailItem.Recipients.Add "you@domain.com"
' OR
objMailItem.To = "me@domain.com; you@domain.com"
When you are ready to send the e mail, just invoke the Send method:
objMailItem.Send
NOTE: to use the above, you have to set a reference to Microsoft Outlook X Object Library (X = 9 if you have Office2000 installed).
Simon