Batch email delivery with Mailgun and Wordpress

198 Views Asked by At

Our site is Wordpress based, and we use Mailgun plugin to send emails to our customers. So we will start a campaign this week, where we need to send about 200K emails, my question is: Does Mailgun plugin for Wordpress use batch feature at API level?

Best regards, Oscar.

1

There are 1 best solutions below

2
On

If you download blat from (http://www.blat.net/) you can use the command line to send emails.

  1. Place blat into C:\WINDOWS\System32

  2. Before you can email you have to configure blat with:

    blat -install smtp.whateverserver.com [email protected] -u [email protected] -pw mypassword – –
    
  3. Now you can send an email with:

    blat -p -to "recipient" -subject "subject" -body "bodymessage"
    

    Im not sure if this answers your question but i hope it does.