I am trying to send a word document as an attachement but need to include a recipient as a "cc". I can use either macro but having trouble adding my "Cc:". Can someone help with this?
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,
dmposey
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,
dmposey