
"SendMail" and predefined address
Hi Tom,
I might be mistaken but there is an answer to a similar question available
in one of the other Word VBA newsgroups.
Look up in help:
HasRoutingSlip property
Another way, is to use a bit of the Outlook COM:
Dim ol As Object
Dim mi As Object
'assign object properties/methods to variables
Set ol = CreateObject("Outlook.Application")
Set mi= CreateItem(olMailItem)
With mi
.Subject = "Mypredefined subject"
.Display
End
ol.Quit
Set ol = Nothing
Set mi = Nothing
Kind regards,
Perry
Quote:
> Hello
> Could anybody please help me with the following question:
> Is it possible to specify additional optins when using the Office2000
> sendmail method ? I would like to send the active document as an
attachment
> to a predefined mail address with a predefined subject.
> Maybe somebody has a solution ...
> Thanks in advance
> Greetings
> Tom Olsen