I can use either macro to send a word document as an attachment but I am
having trouble trying to add a recipient as a "cc". Can someone help me with
that?
Options.SendMailAttach = True
ActiveDocument.SendMail
or
Private Sub CommandButton1_Click()
ThisDocument.SendForReview _
Recipients:="af14", _
Subject:="Vacation Request Form", _
ShowMessage:=False, _
IncludeAttachment:=True
End Sub
thanks,
Denise
Doug Robbins - 09 Mar 2005 00:09 GMT
You will need to make use of the Outlook Object Model to do this.
See the second method in the article "How to send an email from Word using
VBA" at:
http://word.mvps.org/FAQs/InterDev/SendMail.htm

Signature
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.
Hope this helps,
Doug Robbins - Word MVP
>I can use either macro to send a word document as an attachment but I am
> having trouble trying to add a recipient as a "cc". Can someone help me
[quoted text clipped - 16 lines]
> thanks,
> Denise