Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Configure SilverStripe 3.x to use an external SMTP mail server

Are there some simple configuration options in SilverStripe for it to use an external SMTP server (e.g. Mandrill) for sending emails? I'm not looking at modules at this stage, I'd just like to know if it can be configured out of the box.

like image 330
Dave Avatar asked Dec 05 '25 17:12

Dave


1 Answers

There are number of Mailer replacement modules out there that allow you to do authenticated SMTP. Here's a list to try:

http://addons.silverstripe.org/add-ons?search=mailer&type=module&sort=

I wrote one of them (https://github.com/markguinn/silverstripe-email-helpers) which uses PHPMailer and is the only one I've used recently. I've found the modules that actually integrate with Mandrill are often more complex than needed if you're just sending simple emails.

like image 142
Mark Guinn Avatar answered Dec 09 '25 19:12

Mark Guinn