nrph
nrph

Reputation: 335

Easiest option to send emails from PHP?

I am developing social service in Drupal. There is need to send notifications to registered users.

Which option would be the easiest to integrate Drupal with and to send notifications to users?

SES/GAE are clear winners from business point of view.

This question is about which option would be the easiest to integrate with PHP code and which would provide least headache.

Please note that third party providers are not that easy to maintain, as they might drop emails without right MTA relay (unfortunately I experienced that problem with Sendgrid and another PHP service).

Upvotes: 2

Views: 433

Answers (4)

Seldaek
Seldaek

Reputation: 42026

I would recommend you to use SwiftMailer, a PHP library that can easily send mails via any SMTP server, SendGrid will provide you with an SMTP server that you can use I believe.

Upvotes: 1

JonLim
JonLim

Reputation: 1413

Just want to throw PostageApp's hat into the ring. We've got some documentation on integration with PHP and our API is one of the cleanest and easiest to use around.

We're also exploring an integration with Amazon SES to capitalize on their great prices (And the free option!) so you might be able to use both? Happy to answer questions should you have any.

Upvotes: 0

chx
chx

Reputation: 11760

These days, handling email in house is a royal PITA. I recommend mailchimp instead.

Upvotes: 0

Alfred
Alfred

Reputation: 61771

in my opinion app engine(python). only a couple lines of code to create webservice to send out e-mail in python.

you just do simple post from cURL via PHP to sent email. easy as pie. Maybe later I will post a little snippet to achieve this :P.

Upvotes: 0

Related Questions