标签: python email smtp gmail sendgrid
我目前正在使用sendgrid发送电子邮件:
DEFAULT_FROM_EMAIL = 'david@gmail.com' email = EmailMessage(subject, message, DEFAULT_FROM_EMAIL, TO_EMAILS) email.send()
但是,当我在Gmail中转到我发送的邮箱时,该电子邮件不会显示。有没有这样的方式,当我从Sendgrid发送电子邮件时,它会显示在我在Gmail上发送的邮箱中,以便记录它?
答案 0 :(得分:1)
SendGrid的BCC app将允许您在发送每封电子邮件时,通过BCC发送电子邮件地址(在本例中为您的Gmail帐户);虽然你仍然无法过滤它以发送邮件。可以找到here的文档。