I’m sending an email using frappe.sendmail()
and setting some email addresses in the cc
field like this
frappe.sendmail(
recipients=[“main@example.com”],
cc=[“cc1@example.com”, “cc2@example.com”],
subject=“Test Email”,
message=“This is a test message.”
)
when the email is received, the CC recipients see the email addressed to them in the “To” field not “CC”
so i want to know Is this due to my SMTP server or email gateway configuration?
or how can I fix it so CC recipients appear correctly in the “CC” field?
my frappe version is Frappe v15.62.0