mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Wire up settings in mailer job
This commit is contained in:
parent
943bede7ac
commit
0a4cb4afe7
@ -47,14 +47,11 @@ class NinjaMailerJob implements ShouldQueue
|
||||
|
||||
public $nmo;
|
||||
|
||||
public $settings;
|
||||
|
||||
public function __construct(NinjaMailerObject $nmo)
|
||||
{
|
||||
|
||||
$this->nmo = $nmo;
|
||||
|
||||
$this->settings = $nmo->settings;
|
||||
}
|
||||
|
||||
public function handle()
|
||||
@ -104,7 +101,7 @@ class NinjaMailerJob implements ShouldQueue
|
||||
|
||||
private function setGmailMailer()
|
||||
{
|
||||
$sending_user = $this->settings->gmail_sending_user_id;
|
||||
$sending_user = $this->nmo->settings->gmail_sending_user_id;
|
||||
|
||||
$user = User::find($this->decodePrimaryKey($sending_user));
|
||||
|
||||
@ -143,7 +140,7 @@ class NinjaMailerJob implements ShouldQueue
|
||||
);
|
||||
}
|
||||
|
||||
private function failed($exception = null)
|
||||
public function failed($exception = null)
|
||||
{
|
||||
nlog('mailer job failed');
|
||||
nlog($exception->getMessage());
|
||||
|
Loading…
Reference in New Issue
Block a user