Search code examples
pythonemailsmtpgmailsendgrid

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?


Solution

  • 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.