Reputation: 1235
Looking at Mailgun as a good solution for sending HTML email to a large number of recipients
How would this be implemented with CI?
Upvotes: 0
Views: 2836
Reputation: 21249
I would use MailGun's SMTP delivery with the standard Codeigniter Email library configured for SMTP.
I did something similar with SendGrid recently . Worked a treat with Sendgrid, didn't have to worry about anything apart from authentication to their smtp server. Sendgrid handled the quantity without any problem (though it was way less recipients - about 1k).
Upvotes: 3