Mailgun, Mandrill and Ses Driver, SMTP and phpmailer, which one should I use in Laravel 5.1?

The Laravel documentation discusses different post packages that we can install with composer and use. I wanted to implement mail functionality on the site so that this question comes up. Which one is best for smtp, phpmailer, mandrill and mailgun, etc. And why?

Thank.

+3


source to share


1 answer


It is important for what type of email you are sending.

What you should strive for: Have the best reputation / value for your project. Reputation means the possibility of delivery (not marked as spam)

If it is transactional, eg: Password changes, Mandril account updates are not bad and have excellent performance. Be aware that sales or newsletters are against TOS on the mandrill.

If your project has more seller in order or reputation:



Mailgun and SendGrid PHPmailer and local SMTP

Mailgun and Sendgrid email campaigns allow the use of clients for this.

PHPMailer and local SMTP will rely on the reputation of your server IP. The more time passes, the more your reputation grows.

All of these options have PHP SDKs and libraries, and Laravel is Fantastic FrameWork.

0


source







All Articles