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?
source
share