Hello.
I have a command button on a MS Word form. I would like to open a MS Outlook window with the MS Word form as an attachment. That's easy enough...
Private Sub cmdSendOfficeReq_Click()
Options.SendMailAttach = True
ActiveDocument.SendMail
End Sub
The question is how can I programatically:
1) fill in the To: box with my destination email address
2) fill in the Cc: box with an email address
3) fill in the subject line
4) automatically send the email
Thanks in advance.
Cassie
I have a command button on a MS Word form. I would like to open a MS Outlook window with the MS Word form as an attachment. That's easy enough...
Private Sub cmdSendOfficeReq_Click()
Options.SendMailAttach = True
ActiveDocument.SendMail
End Sub
The question is how can I programatically:
1) fill in the To: box with my destination email address
2) fill in the Cc: box with an email address
3) fill in the subject line
4) automatically send the email
Thanks in advance.
Cassie