Fix required after optional warning in SMTP mailer

[MAILPOET-3296]
This commit is contained in:
Rostislav Wolny
2020-11-26 15:41:16 +01:00
committed by Veljko V
parent e2236e45df
commit 0f7f173259
3 changed files with 20 additions and 11 deletions

View File

@@ -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: