This is the order of the parameters that your email should be sent.
[objecttype][, objectname][, outputformat][, to][, cc][, bcc][, subject][, messagetext][, editmessage][, templatefile]
I setup a variable strEmailAddressCC for the CC and use it right after the to or in my case below strEmailAddress
DoCmd.SendObject , , acFormatRTF, strEmailAddress, strEmailAddressCC _
, , strSubject, strEMailMsg, False, False
For your subject line create a variable Dim strSubject As String
strSubject = "First Error Escalation for:" & " " & rs![FirstName] & " " & rs![LastName] &