Fixes for mailers

This commit is contained in:
David Bomba 2023-06-30 14:50:20 +10:00
parent 53a930f6c4
commit cf4b87e701
3 changed files with 2 additions and 2 deletions

View File

@ -245,6 +245,7 @@ class NinjaMailerJob implements ShouldQueue
$this->setGmailMailer();
return $this;
case 'office365':
case 'microsoft':
$this->mailer = 'office365';
$this->setOfficeMailer();
return $this;

View File

@ -432,6 +432,7 @@ class Email implements ShouldQueue
$this->setGmailMailer();
return $this;
case 'office365':
case 'microsoft':
$this->mailer = 'office365';
$this->setOfficeMailer();
return $this;

View File

@ -6,8 +6,6 @@ parameters:
ignoreErrors:
- '#Call to an undefined method .*badMethod\(\)#'
- '#Call to an undefined method Illuminate\Database\Eloquent\Builder::exclude#'
parallel:
maximumNumberOfProcesses: 1
level: 4
paths:
- 'app/'