Email Send for ourself

Hi all,
I added both the recipients and CC while sending the email. But while using frappe.sendmail() method, CC is shown as “To”. pls tell me any what i’m missing
I attached my code here
email_args = {
“recipients”: [user],
“cc”: “jeci123@gmail.com”,
“message”: (message),
“subject”: ‘Audit Execution Notification’,
“attachments”: [frappe.attach_print(‘Audit Execution’, self.name, file_name=self.name, print_format=‘Audit Execution Mail’,password=password)],
“reference_doctype”: ‘Audit Execution’,
“reference_name”: self.name
}

Any update pls

Hello @Jecintha you need to include
‘expose_recipients’: ‘header’,

This will show both who the mail was sent to and also the people that were copied.