I need to send out emails at a rate exceeding App Engine’s free email quota (8 emails/minute). I’m planning to use a TaskQueue to queue the emails, but I wondered: is there already a library or Python module I could use to automate this? It seems like the kind of problem someone might have run into before.
Share
The deferred library is designed for exactly this sort of thing. Simply use
deferred.defer(message.send), and make sure the queue you’re using has the appropriate execution rate.