My situation is that , I have a sub for sending an email to a single client on the current form. Using a record set works fine, I now wish to have .Cc email address which is not part of the Record set ." its to the department head".
strEmailAddress = rst![clientEmail] & " ;" & somebody@ntlworld.com
My question is can I type the somebody email address as indicated in red in the above line? to enable the email to go to both addressees .if so any assistance in the correct format would be appreciated .
set DoCmd.SendObject , , acFormatRTF, clientEmail, _
, , strSubject, strEMailMsg, False, False?
I would prefer to use the Do Cmd SendObject is this is achievable