first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

Code: Sending mail from Outlook Express; basSendMail()

Public Sub basSendMail()

Dim objMailItem As MailItem

Set objMailItem = Application.CreateItem(olMailItem)

With objMailItem
    .To = "rasx@kintespace.com"
    .Subject = "Is Haley's Comet for You?"
    .Body = "This is the body text."
    .Send
End With

End Sub

mod date: 2000-08-15T01:07:00.000Z