mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
Fixes for generic email templates
This commit is contained in:
parent
624f8db661
commit
0338a30a48
@ -92,6 +92,7 @@ class UserEmailChanged extends BaseMailerJob implements ShouldQueue
|
||||
'button' => ctrans('texts.account_login'),
|
||||
'signature' => $this->company->owner()->signature,
|
||||
'logo' => $this->company->present()->logo(),
|
||||
'settings' => $this->settings,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
@ -84,6 +84,8 @@ class EntitySentObject
|
||||
'button' => ctrans("texts.view_{$this->entity_type}"),
|
||||
'signature' => $settings->email_signature,
|
||||
'logo' => $this->company->present()->logo(),
|
||||
'settings' => $settings,
|
||||
|
||||
];
|
||||
}
|
||||
}
|
||||
|
@ -84,6 +84,8 @@ class EntityViewedObject
|
||||
'button' => ctrans("texts.view_{$this->entity_type}"),
|
||||
'signature' => $settings->email_signature,
|
||||
'logo' => $this->company->present()->logo(),
|
||||
'settings' => $settings,
|
||||
|
||||
];
|
||||
|
||||
return $data;
|
||||
|
@ -76,6 +76,8 @@ class PaymentFailureObject
|
||||
),
|
||||
'signature' => $signature,
|
||||
'logo' => $this->company->present()->logo(),
|
||||
'settings' => $this->client->getMergedSettings(),
|
||||
|
||||
];
|
||||
|
||||
return $data;
|
||||
|
Loading…
x
Reference in New Issue
Block a user