Reputation: 110093
I am currently sending emails using sendgrid:
DEFAULT_FROM_EMAIL = '[email protected]'
email = EmailMessage(subject, message, DEFAULT_FROM_EMAIL, TO_EMAILS)
email.send()
However, when I go to my sent mail box in Gmail, that email does not show. Is there a way such that when I send an email from Sendgrid, it will show up in my sent mail box on Gmail, to keep a record of it?
Upvotes: 2
Views: 2749
Reputation: 1
Sendgrid are deprecating the BCC feature according to their website.
I also think it’s useful to have outgoing messages copied in my email programme (Freshdesk, Gmail etc) and not sure why this is so difficult. Otherwise when a customer replies to one of my email, it doesn't show the thread, because the original sent message is missing.
Upvotes: -1