2020-10-28 00:02:32 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Quote Ninja (https://quoteninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/quoteninja/quoteninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Quote Ninja LLC (https://quoteninja.com)
|
2020-10-28 00:02:32 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-10-28 00:02:32 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Mail\Engine;
|
|
|
|
|
2022-11-28 04:16:46 +01:00
|
|
|
use App\Jobs\Entity\CreateRawPdf;
|
2021-03-22 21:09:42 +01:00
|
|
|
use App\Models\Account;
|
2020-10-29 10:56:37 +01:00
|
|
|
use App\Utils\HtmlEngine;
|
2021-04-16 08:22:42 +02:00
|
|
|
use App\Utils\Ninja;
|
2020-10-28 00:02:32 +01:00
|
|
|
use App\Utils\Number;
|
2021-04-16 08:22:42 +02:00
|
|
|
use Illuminate\Support\Facades\App;
|
2023-02-02 23:56:58 +01:00
|
|
|
use Illuminate\Support\Facades\URL;
|
2020-10-28 00:02:32 +01:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
class QuoteEmailEngine extends BaseEmailEngine
|
2020-10-28 00:02:32 +01:00
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
public $invitation;
|
2020-10-28 00:02:32 +01:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
public $client;
|
2020-10-28 00:02:32 +01:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
public $quote;
|
2020-10-28 00:02:32 +01:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
public $contact;
|
2020-10-28 00:02:32 +01:00
|
|
|
|
|
|
|
public $reminder_template;
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
public $template_data;
|
2020-11-05 11:14:30 +01:00
|
|
|
|
|
|
|
public function __construct($invitation, $reminder_template, $template_data)
|
2020-10-28 00:02:32 +01:00
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
$this->invitation = $invitation;
|
2020-10-28 00:02:32 +01:00
|
|
|
$this->reminder_template = $reminder_template;
|
|
|
|
$this->client = $invitation->contact->client;
|
|
|
|
$this->quote = $invitation->quote;
|
|
|
|
$this->contact = $invitation->contact;
|
2020-11-05 11:14:30 +01:00
|
|
|
$this->template_data = $template_data;
|
2020-10-28 00:02:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function build()
|
|
|
|
{
|
2021-04-16 08:22:42 +02:00
|
|
|
App::forgetInstance('translator');
|
2021-05-31 12:40:34 +02:00
|
|
|
$t = app('translator');
|
|
|
|
$t->replace(Ninja::transformTranslations($this->client->getMergedSettings()));
|
2021-06-10 03:15:21 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->reminder_template == 'endless_reminder') {
|
|
|
|
$this->reminder_template = 'reminder_endless';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_array($this->template_data) && array_key_exists('body', $this->template_data) && strlen($this->template_data['body']) > 0) {
|
2020-11-05 11:14:30 +01:00
|
|
|
$body_template = $this->template_data['body'];
|
2020-11-25 15:19:52 +01:00
|
|
|
} else {
|
2020-11-05 11:14:30 +01:00
|
|
|
$body_template = $this->client->getSetting('email_template_'.$this->reminder_template);
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2021-11-30 10:06:05 +01:00
|
|
|
|
2020-10-28 00:02:32 +01:00
|
|
|
/* Use default translations if a custom message has not been set*/
|
|
|
|
if (iconv_strlen($body_template) == 0) {
|
|
|
|
$body_template = trans(
|
|
|
|
'texts.quote_message',
|
|
|
|
[
|
|
|
|
'quote' => $this->quote->number,
|
|
|
|
'company' => $this->quote->company->present()->name(),
|
2021-11-30 06:05:15 +01:00
|
|
|
'amount' => Number::formatMoney($this->quote->amount, $this->client),
|
2020-10-28 00:02:32 +01:00
|
|
|
],
|
|
|
|
null,
|
|
|
|
$this->client->locale()
|
|
|
|
);
|
2021-11-30 10:06:05 +01:00
|
|
|
|
|
|
|
$body_template .= '<div class="center">$view_button</div>';
|
2020-10-28 00:02:32 +01:00
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (is_array($this->template_data) && array_key_exists('subject', $this->template_data) && strlen($this->template_data['subject']) > 0) {
|
2020-11-05 11:14:30 +01:00
|
|
|
$subject_template = $this->template_data['subject'];
|
2020-11-25 15:19:52 +01:00
|
|
|
} else {
|
2020-11-05 11:14:30 +01:00
|
|
|
$subject_template = $this->client->getSetting('email_subject_'.$this->reminder_template);
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2020-10-28 00:02:32 +01:00
|
|
|
|
|
|
|
if (iconv_strlen($subject_template) == 0) {
|
|
|
|
$subject_template = trans(
|
|
|
|
'texts.quote_subject',
|
|
|
|
[
|
|
|
|
'number' => $this->quote->number,
|
|
|
|
'account' => $this->quote->company->present()->name(),
|
|
|
|
],
|
|
|
|
null,
|
|
|
|
$this->client->locale()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-03-04 00:55:02 +01:00
|
|
|
$text_body = trans(
|
2023-02-16 02:36:09 +01:00
|
|
|
'texts.quote_message',
|
|
|
|
[
|
|
|
|
'quote' => $this->quote->number,
|
|
|
|
'company' => $this->quote->company->present()->name(),
|
|
|
|
'amount' => Number::formatMoney($this->quote->amount, $this->client),
|
|
|
|
],
|
|
|
|
null,
|
|
|
|
$this->client->locale()
|
|
|
|
)."\n\n".$this->invitation->getLink();
|
2022-03-04 00:55:02 +01:00
|
|
|
|
2020-10-28 00:02:32 +01:00
|
|
|
$this->setTemplate($this->client->getSetting('email_style'))
|
|
|
|
->setContact($this->contact)
|
2020-10-28 07:27:10 +01:00
|
|
|
->setVariables((new HtmlEngine($this->invitation))->makeValues())//move make values into the htmlengine
|
2020-10-28 00:02:32 +01:00
|
|
|
->setSubject($subject_template)
|
|
|
|
->setBody($body_template)
|
|
|
|
->setFooter("<a href='{$this->invitation->getLink()}'>".ctrans('texts.view_quote').'</a>')
|
|
|
|
->setViewLink($this->invitation->getLink())
|
2021-02-22 01:18:52 +01:00
|
|
|
->setViewText(ctrans('texts.view_quote'))
|
2022-03-04 00:55:02 +01:00
|
|
|
->setInvitation($this->invitation)
|
|
|
|
->setTextBody($text_body);
|
2021-02-22 01:18:52 +01:00
|
|
|
|
2021-03-16 22:08:23 +01:00
|
|
|
if ($this->client->getSetting('pdf_email_attachment') !== false && $this->quote->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
|
2022-11-28 05:45:25 +01:00
|
|
|
$pdf = ((new CreateRawPdf($this->invitation, $this->invitation->company->db))->handle());
|
2022-11-28 04:16:46 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
$this->setAttachments([['file' => base64_encode($pdf), 'name' => $this->quote->numberFormatter().'.pdf']]);
|
2020-10-28 00:02:32 +01:00
|
|
|
}
|
|
|
|
|
2021-01-09 05:18:20 +01:00
|
|
|
//attach third party documents
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->client->getSetting('document_email_attachment') !== false && $this->quote->company->account->hasFeature(Account::FEATURE_DOCUMENTS)) {
|
2021-01-09 05:18:20 +01:00
|
|
|
// Storage::url
|
2022-06-21 11:57:17 +02:00
|
|
|
foreach ($this->quote->documents as $document) {
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($document->size > $this->max_attachment_size) {
|
2023-02-02 23:56:58 +01:00
|
|
|
$this->setAttachmentLinks(["<a class='doc_links' href='" . URL::signedRoute('documents.public_download', ['document_hash' => $document->hash]) ."'>". $document->name ."</a>"]);
|
2023-02-16 02:36:09 +01:00
|
|
|
} else {
|
|
|
|
$this->setAttachments([['file' => base64_encode($document->getFile()), 'path' => $document->filePath(), 'name' => $document->name, 'mime' => null, ]]);
|
|
|
|
}
|
2021-05-12 06:21:44 +02:00
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
foreach ($this->quote->company->documents as $document) {
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($document->size > $this->max_attachment_size) {
|
2023-02-02 23:56:58 +01:00
|
|
|
$this->setAttachmentLinks(["<a class='doc_links' href='" . URL::signedRoute('documents.public_download', ['document_hash' => $document->hash]) ."'>". $document->name ."</a>"]);
|
2023-02-16 02:36:09 +01:00
|
|
|
} else {
|
|
|
|
$this->setAttachments([['file' => base64_encode($document->getFile()), 'path' => $document->filePath(), 'name' => $document->name, 'mime' => null, ]]);
|
|
|
|
}
|
2021-01-09 05:18:20 +01:00
|
|
|
}
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-10-28 00:02:32 +01:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|