mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
284 lines
8.9 KiB
PHP
284 lines
8.9 KiB
PHP
<?php namespace App\Ninja\Mailers;
|
|
|
|
use Utils;
|
|
use Event;
|
|
use URL;
|
|
use Auth;
|
|
use App\Services\TemplateService;
|
|
use App\Models\Invoice;
|
|
use App\Models\Payment;
|
|
use App\Models\Activity;
|
|
use App\Events\InvoiceWasEmailed;
|
|
use App\Events\QuoteWasEmailed;
|
|
|
|
class ContactMailer extends Mailer
|
|
{
|
|
public static $variableFields = [
|
|
'footer',
|
|
'account',
|
|
'dueDate',
|
|
'invoiceDate',
|
|
'client',
|
|
'amount',
|
|
'contact',
|
|
'firstName',
|
|
'invoice',
|
|
'quote',
|
|
'password',
|
|
'documents',
|
|
'viewLink',
|
|
'viewButton',
|
|
'paymentLink',
|
|
'paymentButton',
|
|
'autoBill',
|
|
];
|
|
|
|
public function __construct(TemplateService $templateService)
|
|
{
|
|
$this->templateService = $templateService;
|
|
}
|
|
|
|
public function sendInvoice(Invoice $invoice, $reminder = false, $pdfString = false)
|
|
{
|
|
$invoice->load('invitations', 'client.language', 'account');
|
|
$entityType = $invoice->getEntityType();
|
|
|
|
$client = $invoice->client;
|
|
$account = $invoice->account;
|
|
|
|
$response = null;
|
|
|
|
if ($client->trashed()) {
|
|
return trans('texts.email_error_inactive_client');
|
|
} elseif ($invoice->trashed()) {
|
|
return trans('texts.email_error_inactive_invoice');
|
|
}
|
|
|
|
$account->loadLocalizationSettings($client);
|
|
$emailTemplate = $account->getEmailTemplate($reminder ?: $entityType);
|
|
$emailSubject = $account->getEmailSubject($reminder ?: $entityType);
|
|
|
|
$sent = false;
|
|
|
|
if ($account->attachPDF() && !$pdfString) {
|
|
$pdfString = $invoice->getPDFString();
|
|
}
|
|
|
|
$documentStrings = array();
|
|
if ($account->document_email_attachment && $invoice->hasDocuments()) {
|
|
$documents = $invoice->documents;
|
|
|
|
foreach($invoice->expenses as $expense){
|
|
$documents = $documents->merge($expense->documents);
|
|
}
|
|
|
|
$documents = $documents->sortBy('size');
|
|
|
|
$size = 0;
|
|
$maxSize = MAX_EMAIL_DOCUMENTS_SIZE * 1000;
|
|
foreach($documents as $document){
|
|
$size += $document->size;
|
|
if($size > $maxSize)break;
|
|
|
|
$documentStrings[] = array(
|
|
'name' => $document->name,
|
|
'data' => $document->getRaw(),
|
|
);
|
|
}
|
|
}
|
|
|
|
foreach ($invoice->invitations as $invitation) {
|
|
$response = $this->sendInvitation($invitation, $invoice, $emailTemplate, $emailSubject, $pdfString, $documentStrings);
|
|
if ($response === true) {
|
|
$sent = true;
|
|
}
|
|
}
|
|
|
|
$account->loadLocalizationSettings();
|
|
|
|
if ($sent === true) {
|
|
if ($invoice->isType(INVOICE_TYPE_QUOTE)) {
|
|
event(new QuoteWasEmailed($invoice));
|
|
} else {
|
|
event(new InvoiceWasEmailed($invoice));
|
|
}
|
|
}
|
|
|
|
return $response;
|
|
}
|
|
|
|
private function sendInvitation($invitation, $invoice, $body, $subject, $pdfString, $documentStrings)
|
|
{
|
|
$client = $invoice->client;
|
|
$account = $invoice->account;
|
|
|
|
if (Auth::check()) {
|
|
$user = Auth::user();
|
|
} else {
|
|
$user = $invitation->user;
|
|
if ($invitation->user->trashed()) {
|
|
$user = $account->users()->orderBy('id')->first();
|
|
}
|
|
}
|
|
|
|
if (!$user->email || !$user->registered) {
|
|
return trans('texts.email_error_user_unregistered');
|
|
} elseif (!$user->confirmed) {
|
|
return trans('texts.email_error_user_unconfirmed');
|
|
} elseif (!$invitation->contact->email) {
|
|
return trans('texts.email_error_invalid_contact_email');
|
|
} elseif ($invitation->contact->trashed()) {
|
|
return trans('texts.email_error_inactive_contact');
|
|
}
|
|
|
|
$variables = [
|
|
'account' => $account,
|
|
'client' => $client,
|
|
'invitation' => $invitation,
|
|
'amount' => $invoice->getRequestedAmount()
|
|
];
|
|
|
|
// Let the client know they'll be billed later
|
|
if ($client->autoBillLater()) {
|
|
$variables['autobill'] = $invoice->present()->autoBillEmailMessage();
|
|
}
|
|
|
|
if (empty($invitation->contact->password) && $account->hasFeature(FEATURE_CLIENT_PORTAL_PASSWORD) && $account->enable_portal_password && $account->send_portal_password) {
|
|
// The contact needs a password
|
|
$variables['password'] = $password = $this->generatePassword();
|
|
$invitation->contact->password = bcrypt($password);
|
|
$invitation->contact->save();
|
|
}
|
|
|
|
$data = [
|
|
'body' => $this->templateService->processVariables($body, $variables),
|
|
'link' => $invitation->getLink(),
|
|
'entityType' => $invoice->getEntityType(),
|
|
'invoiceId' => $invoice->id,
|
|
'invitation' => $invitation,
|
|
'account' => $account,
|
|
'client' => $client,
|
|
'invoice' => $invoice,
|
|
'documents' => $documentStrings,
|
|
];
|
|
|
|
if ($account->attachPDF()) {
|
|
$data['pdfString'] = $pdfString;
|
|
$data['pdfFileName'] = $invoice->getFileName();
|
|
}
|
|
|
|
$subject = $this->templateService->processVariables($subject, $variables);
|
|
$fromEmail = $user->email;
|
|
$view = $account->getTemplateView(ENTITY_INVOICE);
|
|
|
|
$response = $this->sendTo($invitation->contact->email, $fromEmail, $account->getDisplayName(), $subject, $view, $data);
|
|
|
|
if ($response === true) {
|
|
return true;
|
|
} else {
|
|
return $response;
|
|
}
|
|
}
|
|
|
|
protected function generatePassword($length = 9)
|
|
{
|
|
$sets = array(
|
|
'abcdefghjkmnpqrstuvwxyz',
|
|
'ABCDEFGHJKMNPQRSTUVWXYZ',
|
|
'23456789',
|
|
);
|
|
$all = '';
|
|
$password = '';
|
|
foreach($sets as $set)
|
|
{
|
|
$password .= $set[array_rand(str_split($set))];
|
|
$all .= $set;
|
|
}
|
|
$all = str_split($all);
|
|
for($i = 0; $i < $length - count($sets); $i++)
|
|
$password .= $all[array_rand($all)];
|
|
$password = str_shuffle($password);
|
|
|
|
return $password;
|
|
}
|
|
|
|
public function sendPaymentConfirmation(Payment $payment)
|
|
{
|
|
$account = $payment->account;
|
|
$client = $payment->client;
|
|
|
|
$account->loadLocalizationSettings($client);
|
|
|
|
$invoice = $payment->invoice;
|
|
$accountName = $account->getDisplayName();
|
|
$emailTemplate = $account->getEmailTemplate(ENTITY_PAYMENT);
|
|
$emailSubject = $invoice->account->getEmailSubject(ENTITY_PAYMENT);
|
|
|
|
if ($payment->invitation) {
|
|
$user = $payment->invitation->user;
|
|
$contact = $payment->contact;
|
|
$invitation = $payment->invitation;
|
|
} else {
|
|
$user = $payment->user;
|
|
$contact = $client->contacts[0];
|
|
$invitation = $payment->invoice->invitations[0];
|
|
}
|
|
|
|
$variables = [
|
|
'account' => $account,
|
|
'client' => $client,
|
|
'invitation' => $invitation,
|
|
'amount' => $payment->amount,
|
|
];
|
|
|
|
$data = [
|
|
'body' => $this->templateService->processVariables($emailTemplate, $variables),
|
|
'link' => $invitation->getLink(),
|
|
'invoice' => $invoice,
|
|
'client' => $client,
|
|
'account' => $account,
|
|
'payment' => $payment,
|
|
'entityType' => ENTITY_INVOICE,
|
|
];
|
|
|
|
if ($account->attachPDF()) {
|
|
$data['pdfString'] = $invoice->getPDFString();
|
|
$data['pdfFileName'] = $invoice->getFileName();
|
|
}
|
|
|
|
$subject = $this->templateService->processVariables($emailSubject, $variables);
|
|
$data['invoice_id'] = $payment->invoice->id;
|
|
|
|
$view = $account->getTemplateView('payment_confirmation');
|
|
|
|
if ($user->email && $contact->email) {
|
|
$this->sendTo($contact->email, $user->email, $accountName, $subject, $view, $data);
|
|
}
|
|
|
|
$account->loadLocalizationSettings();
|
|
}
|
|
|
|
public function sendLicensePaymentConfirmation($name, $email, $amount, $license, $productId)
|
|
{
|
|
$view = 'license_confirmation';
|
|
$subject = trans('texts.payment_subject');
|
|
|
|
if ($productId == PRODUCT_ONE_CLICK_INSTALL) {
|
|
$license = "Softaculous install license: $license";
|
|
} elseif ($productId == PRODUCT_INVOICE_DESIGNS) {
|
|
$license = "Invoice designs license: $license";
|
|
} elseif ($productId == PRODUCT_WHITE_LABEL) {
|
|
$license = "White label license: $license";
|
|
}
|
|
|
|
$data = [
|
|
'client' => $name,
|
|
'amount' => Utils::formatMoney($amount, DEFAULT_CURRENCY, DEFAULT_COUNTRY),
|
|
'license' => $license
|
|
];
|
|
|
|
$this->sendTo($email, CONTACT_EMAIL, CONTACT_NAME, $subject, $view, $data);
|
|
}
|
|
|
|
}
|