David542
David542

Reputation: 110093

Sendgrid outgoing email to appear in my Sent Mailbox

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

Answers (2)

user3328202
user3328202

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

eddiezane
eddiezane

Reputation: 916

SendGrid's BCC app will allow you to BCC an email address, in this case your gmail account, with every email sent; though you still can't filter it to sent mail. The documentation for it can be found here.

Upvotes: 2

Related Questions