2019-12-10 21:25:54 +01:00
|
|
|
<?php
|
2020-08-06 05:04:09 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-08-06 05:04:09 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-08-06 05:04:09 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-08-06 05:04:09 +02:00
|
|
|
*/
|
|
|
|
|
2019-12-10 21:25:54 +01:00
|
|
|
namespace App\Mail;
|
|
|
|
|
2021-08-29 12:54:26 +02:00
|
|
|
use App\Jobs\Invoice\CreateUbl;
|
|
|
|
use App\Models\Account;
|
2020-02-15 12:49:31 +01:00
|
|
|
use App\Models\Client;
|
2021-02-02 09:51:12 +01:00
|
|
|
use App\Models\ClientContact;
|
2020-02-15 12:49:31 +01:00
|
|
|
use App\Models\User;
|
2021-04-15 15:56:20 +02:00
|
|
|
use App\Services\PdfMaker\Designs\Utilities\DesignHelpers;
|
2021-03-31 00:58:50 +02:00
|
|
|
use App\Utils\HtmlEngine;
|
2021-11-14 22:52:04 +01:00
|
|
|
use App\Utils\Ninja;
|
2021-04-15 15:56:20 +02:00
|
|
|
use App\Utils\TemplateEngine;
|
2019-12-10 21:25:54 +01:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Mail\Mailable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
class TemplateEmail extends Mailable
|
|
|
|
{
|
2020-02-15 12:49:31 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
private $build_email;
|
2020-02-15 12:49:31 +01:00
|
|
|
|
|
|
|
private $client;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-02-02 06:11:33 +01:00
|
|
|
private $contact;
|
|
|
|
|
2021-02-18 22:43:47 +01:00
|
|
|
private $company;
|
|
|
|
|
2021-02-22 01:18:52 +01:00
|
|
|
private $invitation;
|
|
|
|
|
|
|
|
public function __construct($build_email, ClientContact $contact, $invitation = null)
|
2019-12-10 21:25:54 +01:00
|
|
|
{
|
2020-02-15 10:01:15 +01:00
|
|
|
$this->build_email = $build_email;
|
2020-02-15 12:49:31 +01:00
|
|
|
|
2021-02-02 06:11:33 +01:00
|
|
|
$this->contact = $contact;
|
|
|
|
|
|
|
|
$this->client = $contact->client;
|
2021-02-18 22:43:47 +01:00
|
|
|
|
|
|
|
$this->company = $contact->company;
|
2021-02-22 01:18:52 +01:00
|
|
|
|
|
|
|
$this->invitation = $invitation;
|
2019-12-10 21:25:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function build()
|
|
|
|
{
|
2021-11-30 10:06:05 +01:00
|
|
|
|
|
|
|
$template_name = 'email.template.'.$this->build_email->getTemplate();
|
2021-06-23 11:00:43 +02:00
|
|
|
|
|
|
|
if ($this->build_email->getTemplate() == 'light' || $this->build_email->getTemplate() == 'dark') {
|
|
|
|
$template_name = 'email.template.client';
|
|
|
|
}
|
2019-12-16 12:34:38 +01:00
|
|
|
|
2021-04-11 05:46:40 +02:00
|
|
|
if($this->build_email->getTemplate() == 'custom') {
|
|
|
|
$this->build_email->setBody(str_replace('$body', $this->build_email->getBody(), $this->client->getSetting('email_style_custom')));
|
|
|
|
}
|
|
|
|
|
2021-04-19 11:41:56 +02:00
|
|
|
$settings = $this->client->getMergedSettings();
|
|
|
|
|
2021-04-22 12:29:00 +02:00
|
|
|
if ($this->build_email->getTemplate() !== 'custom') {
|
|
|
|
$this->build_email->setBody(
|
|
|
|
DesignHelpers::parseMarkdownToHtml($this->build_email->getBody())
|
|
|
|
);
|
|
|
|
}
|
2021-04-15 15:56:20 +02:00
|
|
|
|
2020-02-15 12:49:31 +01:00
|
|
|
$company = $this->client->company;
|
2019-12-16 12:34:38 +01:00
|
|
|
|
2021-03-31 03:55:33 +02:00
|
|
|
if($this->invitation)
|
|
|
|
{
|
|
|
|
$html_variables = (new HtmlEngine($this->invitation))->makeValues();
|
|
|
|
$signature = str_replace(array_keys($html_variables), array_values($html_variables), $settings->email_signature);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$signature = $settings->email_signature;
|
2021-04-15 15:56:20 +02:00
|
|
|
|
2021-09-03 14:59:48 +02:00
|
|
|
if(property_exists($settings, 'email_from_name') && strlen($settings->email_from_name) > 1)
|
|
|
|
$email_from_name = $settings->email_from_name;
|
|
|
|
else
|
|
|
|
$email_from_name = $this->company->present()->name();
|
|
|
|
|
|
|
|
$this->from(config('mail.from.address'), $email_from_name);
|
2021-04-15 15:56:20 +02:00
|
|
|
|
2021-06-17 14:47:34 +02:00
|
|
|
if (strlen($settings->bcc_email) > 1)
|
2021-10-13 06:47:56 +02:00
|
|
|
$this->bcc(explode(",",str_replace(" ", "", $settings->bcc_email)));//remove whitespace if any has been inserted.
|
2021-06-17 14:47:34 +02:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
$this->subject($this->build_email->getSubject())
|
2022-03-04 00:55:02 +01:00
|
|
|
->text('email.template.text', [
|
|
|
|
'text_body' => $this->build_email->getTextBody(),
|
2020-10-20 01:37:33 +02:00
|
|
|
'whitelabel' => $this->client->user->account->isPaid() ? true : false,
|
|
|
|
'settings' => $settings,
|
2020-02-15 12:49:31 +01:00
|
|
|
])
|
2019-12-10 21:25:54 +01:00
|
|
|
->view($template_name, [
|
2021-02-02 06:11:33 +01:00
|
|
|
'greeting' => ctrans('texts.email_salutation', ['name' => $this->contact->present()->name()]),
|
2020-02-15 10:01:15 +01:00
|
|
|
'body' => $this->build_email->getBody(),
|
|
|
|
'footer' => $this->build_email->getFooter(),
|
2020-04-15 02:30:52 +02:00
|
|
|
'view_link' => $this->build_email->getViewLink(),
|
|
|
|
'view_text' => $this->build_email->getViewText(),
|
2020-11-08 06:21:18 +01:00
|
|
|
'title' => '',
|
2021-03-31 03:55:33 +02:00
|
|
|
'signature' => $signature,
|
2019-12-16 12:34:38 +01:00
|
|
|
'settings' => $settings,
|
2020-09-06 11:38:10 +02:00
|
|
|
'company' => $company,
|
2020-09-28 23:54:12 +02:00
|
|
|
'whitelabel' => $this->client->user->account->isPaid() ? true : false,
|
2022-01-18 22:51:16 +01:00
|
|
|
'logo' => $this->company->present()->logo($settings),
|
2021-02-16 13:56:12 +01:00
|
|
|
])
|
|
|
|
->withSwiftMessage(function ($message) use($company){
|
|
|
|
$message->getHeaders()->addTextHeader('Tag', $company->company_key);
|
2021-02-22 01:18:52 +01:00
|
|
|
$message->invitation = $this->invitation;
|
2021-02-17 01:25:30 +01:00
|
|
|
});
|
2019-12-10 21:25:54 +01:00
|
|
|
|
2021-11-14 22:52:04 +01:00
|
|
|
/*In the hosted platform we need to slow things down a little for Storage to catch up.*/
|
|
|
|
if(Ninja::isHosted())
|
|
|
|
sleep(1);
|
|
|
|
|
2020-02-15 12:51:05 +01:00
|
|
|
foreach ($this->build_email->getAttachments() as $file) {
|
2021-01-08 11:19:26 +01:00
|
|
|
|
2021-01-09 05:10:48 +01:00
|
|
|
if(is_string($file))
|
2021-01-08 11:19:26 +01:00
|
|
|
$this->attach($file);
|
2021-01-09 05:10:48 +01:00
|
|
|
elseif(is_array($file))
|
|
|
|
$this->attach($file['path'], ['as' => $file['name'], 'mime' => $file['mime']]);
|
2021-01-08 11:19:26 +01:00
|
|
|
|
2020-02-15 12:51:05 +01:00
|
|
|
}
|
2019-12-22 11:28:41 +01:00
|
|
|
|
2021-12-26 23:05:00 +01:00
|
|
|
if($this->invitation && $this->invitation->invoice && $settings->ubl_email_attachment && $this->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)){
|
2021-08-29 12:54:26 +02:00
|
|
|
|
|
|
|
$ubl_string = CreateUbl::dispatchNow($this->invitation->invoice);
|
2021-09-09 09:23:47 +02:00
|
|
|
|
|
|
|
if($ubl_string)
|
|
|
|
$this->attachData($ubl_string, $this->invitation->invoice->getFileName('xml'));
|
2021-08-29 12:54:26 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-11-12 02:43:32 +01:00
|
|
|
return $this;
|
2019-12-10 21:25:54 +01:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|