Tony Jollans said:
Word is not an e-mail program although it does have some facilities which
use whatever e-mail program you do have. What are you trying to do and
what happens when you try it? And what version of Word do you have?
I'm experimenting with the following....
Dim oOutlookApp As Outlook.Application
Dim oItem As Outlook.MailItem
Set oOutlookApp = CreateObject("Outlook.Application")
Set oItem = oOutlookApp.CreateItem(olMailItem)
oItem.Subject = "Email Subject"
oItem.Body = "Email Mesage"
oItem.Display
Set oItem = Nothing
Set oOutlookApp = Nothing
Fred Zuckerman