Sending email with GAE data sender - how to stop?

I am creating an application with GAE so that people can vote in elections, and this includes sending emails to each voter. I do this in a loop:

mail.send_mail(sender = manager.email(),
               to = email,
               subject = election.title,
               body = body)

where the administrator is a subscribed user.

The BCC seems to be the manager on all emails, but I don't want this to happen. Is there a way to send an email only to the intended recipient?

+3
source share
2 answers

You cannot - App Engine automatically sends BCC. If you do not want to receive them, you can use one of the incoming addresses of your application as the sender address.

+2
source

There is a problem for this problem:

http://code.google.com/p/googleappengine/issues/detail?id=2059

, "" , , Google .

+2

Source: https://habr.com/ru/post/1795124/


All Articles