D
Dave
Hi, we have an internal company newsletter as word document that is sent out
quarterly.
First, according to this article for Word 2007, I can use the "Send a Copy"
so the word document is the email body, but when I follow the instructions I
don't see this option. See http://support.microsoft.com/kb/290936
Second, we want to track who opens or views the newsletter email, but don't
want to use receipts since some people decline this option.
Is there a way to use VBScript on the document to send and email to an inbox
we monitor so that we can track who opens the email?
I looked into something like this, but I can't even get the message box to
appear when I open the document on my machine in Word 2007...any thoughts
would be helpful..
Public WithEvents appWord As Word.Application
Private Sub appWord_DocumentOpen(ByVal Doc As Document)
MsgBox ("Hi..can you send email here?")
End Sub
quarterly.
First, according to this article for Word 2007, I can use the "Send a Copy"
so the word document is the email body, but when I follow the instructions I
don't see this option. See http://support.microsoft.com/kb/290936
Second, we want to track who opens or views the newsletter email, but don't
want to use receipts since some people decline this option.
Is there a way to use VBScript on the document to send and email to an inbox
we monitor so that we can track who opens the email?
I looked into something like this, but I can't even get the message box to
appear when I open the document on my machine in Word 2007...any thoughts
would be helpful..
Public WithEvents appWord As Word.Application
Private Sub appWord_DocumentOpen(ByVal Doc As Document)
MsgBox ("Hi..can you send email here?")
End Sub