mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
217 lines
5.7 KiB
PHP
217 lines
5.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Traits;
|
|
|
|
use App\Constants\Domain;
|
|
use Utils;
|
|
use HTMLUtils;
|
|
|
|
/**
|
|
* Class SendsEmails.
|
|
*/
|
|
trait SendsEmails
|
|
{
|
|
/**
|
|
* @param $entityType
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getDefaultEmailSubject($entityType)
|
|
{
|
|
if (strpos($entityType, 'reminder') !== false) {
|
|
$entityType = 'reminder';
|
|
}
|
|
|
|
return trans("texts.{$entityType}_subject", [
|
|
'invoice' => '$invoice',
|
|
'account' => '$account',
|
|
'quote' => '$quote',
|
|
'number' => '$number',
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @param $entityType
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getEmailSubject($entityType)
|
|
{
|
|
if ($this->hasFeature(FEATURE_CUSTOM_EMAILS)) {
|
|
$field = "email_subject_{$entityType}";
|
|
$value = $this->account_email_settings->$field;
|
|
|
|
if ($value) {
|
|
$value = preg_replace("/\r\n|\r|\n/", ' ', $value);
|
|
return HTMLUtils::sanitizeHTML($value);
|
|
}
|
|
}
|
|
|
|
return $this->getDefaultEmailSubject($entityType);
|
|
}
|
|
|
|
/**
|
|
* @param $entityType
|
|
* @param bool $message
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDefaultEmailTemplate($entityType, $message = false)
|
|
{
|
|
if (strpos($entityType, 'reminder') !== false) {
|
|
$entityType = ENTITY_INVOICE;
|
|
}
|
|
|
|
$template = '<div>$client,</div><br />';
|
|
|
|
if ($this->hasFeature(FEATURE_CUSTOM_EMAILS) && $this->email_design_id != EMAIL_DESIGN_PLAIN) {
|
|
$template .= '<div>' . trans("texts.{$entityType}_message_button", ['amount' => '$amount']) . '</div><br />' .
|
|
'<div style="text-align:center;">$viewButton</div><br />';
|
|
} else {
|
|
$template .= '<div>' . trans("texts.{$entityType}_message", ['amount' => '$amount']) . '</div><br />' .
|
|
'<div>$viewLink</div><br />';
|
|
}
|
|
|
|
if ($message) {
|
|
$template .= "$message<p/>";
|
|
}
|
|
|
|
return $template . '$emailSignature';
|
|
}
|
|
|
|
/**
|
|
* @param $entityType
|
|
* @param bool $message
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getEmailTemplate($entityType, $message = false)
|
|
{
|
|
$template = false;
|
|
|
|
if ($this->hasFeature(FEATURE_CUSTOM_EMAILS)) {
|
|
$field = "email_template_{$entityType}";
|
|
$template = $this->account_email_settings->$field;
|
|
}
|
|
|
|
if (! $template) {
|
|
$template = $this->getDefaultEmailTemplate($entityType, $message);
|
|
}
|
|
|
|
$template = preg_replace("/\r\n|\r|\n/", ' ', $template);
|
|
|
|
// <br/> is causing page breaks with the email designs
|
|
$template = str_replace('/>', ' />', $template);
|
|
|
|
return HTMLUtils::sanitizeHTML($template);
|
|
}
|
|
|
|
/**
|
|
* @param string $view
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getTemplateView($view = '')
|
|
{
|
|
return $this->getEmailDesignId() == EMAIL_DESIGN_PLAIN ? $view : 'design' . $this->getEmailDesignId();
|
|
}
|
|
|
|
/**
|
|
* @return mixed|string
|
|
*/
|
|
public function getEmailFooter()
|
|
{
|
|
if ($this->isPro() && $this->email_footer) {
|
|
// Add line breaks if HTML isn't already being used
|
|
return strip_tags($this->email_footer) == $this->email_footer ? nl2br($this->email_footer) : $this->email_footer;
|
|
} else {
|
|
return '<p><div>' . trans('texts.email_signature') . "\n<br>\$account</div></p>";
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param $reminder
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function getReminderDate($reminder, $filterEnabled = true)
|
|
{
|
|
if ($filterEnabled && ! $this->{"enable_reminder{$reminder}"}) {
|
|
return false;
|
|
}
|
|
|
|
$numDays = $this->{"num_days_reminder{$reminder}"};
|
|
$plusMinus = $this->{"direction_reminder{$reminder}"} == REMINDER_DIRECTION_AFTER ? '-' : '+';
|
|
|
|
return date('Y-m-d', strtotime("$plusMinus $numDays days"));
|
|
}
|
|
|
|
/**
|
|
* @param Invoice $invoice
|
|
*
|
|
* @return bool|string
|
|
*/
|
|
public function getInvoiceReminder($invoice, $filterEnabled = true)
|
|
{
|
|
for ($i = 1; $i <= 3; $i++) {
|
|
if ($date = $this->getReminderDate($i, $filterEnabled)) {
|
|
if ($this->{"field_reminder{$i}"} == REMINDER_FIELD_DUE_DATE) {
|
|
if (($invoice->partial && $invoice->partial_due_date == $date)
|
|
|| $invoice->due_date == $date) {
|
|
return "reminder{$i}";
|
|
}
|
|
} else {
|
|
if ($invoice->invoice_date == $date) {
|
|
return "reminder{$i}";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public function setTemplateDefaults($type, $subject, $body)
|
|
{
|
|
$settings = $this->account_email_settings;
|
|
|
|
if ($subject) {
|
|
$settings->{"email_subject_" . $type} = $subject;
|
|
}
|
|
|
|
if ($body) {
|
|
$settings->{"email_template_" . $type} = $body;
|
|
}
|
|
|
|
$settings->save();
|
|
}
|
|
|
|
public function getBccEmail()
|
|
{
|
|
return $this->isPro() ? $this->account_email_settings->bcc_email : false;
|
|
}
|
|
|
|
public function getReplyToEmail()
|
|
{
|
|
return $this->isPro() ? $this->account_email_settings->reply_to_email : false;
|
|
}
|
|
|
|
public function getFromEmail()
|
|
{
|
|
if (! $this->isPro() || ! Utils::isNinja() || Utils::isReseller()) {
|
|
return false;
|
|
}
|
|
|
|
return Domain::getEmailFromId($this->domain_id);
|
|
}
|
|
|
|
public function getDailyEmailLimit()
|
|
{
|
|
$limit = MAX_EMAILS_SENT_PER_DAY;
|
|
|
|
$limit += $this->created_at->diffInMonths() * 100;
|
|
|
|
return min($limit, 5000);
|
|
}
|
|
}
|