MS Word Email Send Function...

S

Steve

Hi,

I have a requirement where a MS Word 2000 document has a
button or link at the end which when clicked will
automatically attach itself to an email message in
outlook with the to: and subject: line already completed
with predefined values.

Any Ideas how I can achieve this?

thanks,

Steve
 
R

Ryan

I do the same thing in excel so I don't know for sure if
the code would be different at all but I just use the line
as follows:

ActiveWorkbook.SendMail Recipients:="[email protected]",
Subject:="Logbook Entry"

The activeworkbook part probably won't fit with word but I
believe the sendmail command is the one your looking for.

Ryan
 
Top