1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Mail/Engine/InvoiceEmailEngine.php

106 lines
3.6 KiB
PHP
Raw Normal View History

2020-10-27 12:57:12 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Mail\Engine;
2020-11-07 11:13:04 +01:00
use App\DataMapper\EmailTemplateDefaults;
2020-10-28 07:27:10 +01:00
use App\Utils\HtmlEngine;
2020-10-27 12:57:12 +01:00
use App\Utils\Number;
class InvoiceEmailEngine extends BaseEmailEngine
{
public $invitation;
public $client;
public $invoice;
public $contact;
public $reminder_template;
2020-11-05 11:14:30 +01:00
public $template_data;
public function __construct($invitation, $reminder_template, $template_data)
2020-10-27 12:57:12 +01:00
{
$this->invitation = $invitation;
$this->reminder_template = $reminder_template;
$this->client = $invitation->contact->client;
$this->invoice = $invitation->invoice;
$this->contact = $invitation->contact;
2020-11-05 11:14:30 +01:00
$this->template_data = $template_data;
2020-10-27 12:57:12 +01:00
}
public function build()
{
2020-11-05 11:14:30 +01:00
if(is_array($this->template_data) && array_key_exists('body', $this->template_data) && strlen($this->template_data['body']) > 0)
$body_template = $this->template_data['body'];
2020-11-07 11:13:04 +01:00
else{
//$body_template = $this->client->getSetting('email_template_'.$this->reminder_template);
$body_template = EmailTemplateDefaults::getDefaultTemplate($this->client->getSetting('email_template_'.$this->reminder_template), $this->client->locale());
}
2020-10-27 12:57:12 +01:00
/* Use default translations if a custom message has not been set*/
if (iconv_strlen($body_template) == 0) {
$body_template = trans(
'texts.invoice_message',
[
'invoice' => $this->invoice->number,
'company' => $this->invoice->company->present()->name(),
'amount' => Number::formatMoney($this->invoice->balance, $this->client),
],
null,
$this->client->locale()
);
}
2020-11-05 11:14:30 +01:00
if(is_array($this->template_data) && array_key_exists('subject', $this->template_data) && strlen($this->template_data['subject']) > 0)
$subject_template = $this->template_data['subject'];
2020-11-07 11:13:04 +01:00
else{
$subject_template = EmailTemplateDefaults::getDefaultTemplate($this->client->getSetting('email_subject_'.$this->reminder_template), $this->client->locale());
// $subject_template = $this->client->getSetting('email_subject_'.$this->reminder_template);
}
2020-10-27 12:57:12 +01:00
if (iconv_strlen($subject_template) == 0) {
$subject_template = trans(
'texts.invoice_subject',
[
'number' => $this->invoice->number,
'account' => $this->invoice->company->present()->name(),
],
null,
$this->client->locale()
);
}
$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-27 12:57:12 +01:00
->setSubject($subject_template)
->setBody($body_template)
->setFooter("<a href='{$this->invitation->getLink()}'>".ctrans('texts.view_invoice').'</a>')
->setViewLink($this->invitation->getLink())
->setViewText(ctrans('texts.view_invoice'));
if ($this->client->getSetting('pdf_email_attachment') !== false) {
2020-11-04 22:19:44 +01:00
$this->setAttachments($this->invoice->pdf_file_path());
2020-10-27 12:57:12 +01:00
}
return $this;
}
}