Fix required after optional warning in SMTP mailer
[MAILPOET-3296]
This commit is contained in:
committed by
Veljko V
parent
e2236e45df
commit
0f7f173259
@@ -98,13 +98,13 @@ class Mailer {
|
||||
$this->mailerConfig['host'],
|
||||
$this->mailerConfig['port'],
|
||||
$this->mailerConfig['authentication'],
|
||||
$this->mailerConfig['login'],
|
||||
$this->mailerConfig['password'],
|
||||
$this->mailerConfig['encryption'],
|
||||
$this->sender,
|
||||
$this->replyTo,
|
||||
$this->returnPath,
|
||||
new SMTPMapper()
|
||||
new SMTPMapper(),
|
||||
$this->mailerConfig['login'],
|
||||
$this->mailerConfig['password']
|
||||
);
|
||||
break;
|
||||
default:
|
||||
|
Reference in New Issue
Block a user