[phpmailer] Add SMTP-Integration of PHPMailer addon #834

Merged
M-arcus merged 4 commits from addon/phpmailer into develop 2019-04-02 15:56:58 +02:00
Showing only changes of commit bb22b15578 - Show all commits

View file

@ -42,7 +42,7 @@ function phpmailer_emailer_send_prepare(App $a, array &$b)
// Passing `true` enables exceptions
$mail = new PHPMailer(true);
try {
if (Config::get('phpmailer', 'smtp')) {
if (Config::get('phpmailer', 'smtp')) {
// Set mailer to use SMTP
$mail->isSMTP();
/*