View Single Post
 
Old 01-24-2016, 04:25 AM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,142
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

The existing code is
Code:
With olOutMail
  .Subject = .Subject & strSubject
  .To = strAddr
  .Send
End With
Add the CC line as follows:
Code:
With olOutMail
  .Subject = .Subject & strSubject
  .To = strAddr
  .CC = "someone@somewhere.com" 'The address of the CC recipient
  .Send
End With
It will not need re-signing. It is the project that is signed, not the macros it contains.
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote