I posted a while back about getting an "OverQuotaError" when sending out 74 emails in quick succession. It turned out I was breaking the 8 emails per second cap, to solve this I was told to use a task queue.
I've now set up a task queue and have created a specific mail queue in my queue.yml for sending emails out. I use the following configuration with the aim to send out 8 emails per minute, and I'm trying to not use the bucket by setting it to 0. - name: mail-queue rate: 8/m bucket_size: 0 But, when I run a test and send out emails to 28 people, it seems it's still sending out emails at a very high rate. It sends them out at about 10 emails per second based on the information on the ETA of the tasks in the queue in the live App Engine panel. This isn't paced out to 8 emails per minute and I'm afraid I might go over my qota and get the OverQuotaError again. Since I am sending out a newsletter I really can't afford to have to restart it again and risk sending the same letter twice to a number of people. My account doesn't have billing activated but has had the free quota bumped up.
-- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
