I have created a Job Queue module that processes jobs and constructs "social-network" type emails. 2 processors consists of:
Building the custom emails (Views) e.g.
User A and User B have commented on your postorUser B and User C also likes User C's post. Each recipient gets a different email. I initially created a newSwiftmailerinstance and add the message content, subject and recipient. I then added these instances to the database.A cron job runs to fetch and send these emails at a later time.
While benchmarking, I realised it was sending out emails 2 seconds per message avg. So I tried storing a Swift_Message Instances in the database instead. No luck though, still takes as long.
Currently, the code
- Creates a new
Swift_SmtpTransport. - Creates a new
Swift_Mailerinstance.- Loops through the
Swift_Messagemessages retrieved from the DB - Sends each email.
- Loops through the
But it still averages about 2 seconds an email. Is there any way I can improve on the process to speed up delivery? I am using Amazon SES as my SMTP transport and I know it can at least handle 5 emails a second.
So it is probably something I am doing wrong that it is taking 2 seconds per message. Any thoughts appreciated.
EDIT
Please keep in mind that the messages differ for each recipient. I could try out the Swift_Decorator plugin but it will mean that I will have to change the way the views are generated. I am just looking out for other alternatives to speed the process up.