mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
154 lines
4.4 KiB
PHP
154 lines
4.4 KiB
PHP
<?php
|
|
|
|
namespace App\Ninja\Mailers;
|
|
|
|
use App\Models\Invoice;
|
|
use Exception;
|
|
use Mail;
|
|
use Utils;
|
|
|
|
/**
|
|
* Class Mailer.
|
|
*/
|
|
class Mailer
|
|
{
|
|
/**
|
|
* @param $toEmail
|
|
* @param $fromEmail
|
|
* @param $fromName
|
|
* @param $subject
|
|
* @param $view
|
|
* @param array $data
|
|
*
|
|
* @return bool|string
|
|
*/
|
|
public function sendTo($toEmail, $fromEmail, $fromName, $subject, $view, $data = [])
|
|
{
|
|
// don't send emails to dummy addresses
|
|
if (stristr($toEmail, '@example.com')) {
|
|
return true;
|
|
}
|
|
|
|
/*
|
|
if (isset($_ENV['POSTMARK_API_TOKEN'])) {
|
|
$views = 'emails.'.$view.'_html';
|
|
} else {
|
|
$views = [
|
|
'emails.'.$view.'_html',
|
|
'emails.'.$view.'_text',
|
|
];
|
|
}
|
|
*/
|
|
|
|
$views = [
|
|
'emails.'.$view.'_html',
|
|
'emails.'.$view.'_text',
|
|
];
|
|
|
|
try {
|
|
$response = Mail::send($views, $data, function ($message) use ($toEmail, $fromEmail, $fromName, $subject, $data) {
|
|
$toEmail = strtolower($toEmail);
|
|
$replyEmail = $fromEmail;
|
|
$fromEmail = CONTACT_EMAIL;
|
|
//\Log::info("{$toEmail} | {$replyEmail} | $fromEmail");
|
|
|
|
// Optionally send for alternate domain
|
|
if (! empty($data['fromEmail'])) {
|
|
$fromEmail = $data['fromEmail'];
|
|
}
|
|
|
|
$message->to($toEmail)
|
|
->from($fromEmail, $fromName)
|
|
->replyTo($replyEmail, $fromName)
|
|
->subject($subject);
|
|
|
|
// Optionally BCC the email
|
|
if (! empty($data['bccEmail'])) {
|
|
$message->bcc($data['bccEmail']);
|
|
}
|
|
|
|
// Attach the PDF to the email
|
|
if (! empty($data['pdfString']) && ! empty($data['pdfFileName'])) {
|
|
$message->attachData($data['pdfString'], $data['pdfFileName']);
|
|
}
|
|
|
|
// Attach documents to the email
|
|
if (! empty($data['documents'])) {
|
|
foreach ($data['documents'] as $document) {
|
|
$message->attachData($document['data'], $document['name']);
|
|
}
|
|
}
|
|
});
|
|
|
|
return $this->handleSuccess($response, $data);
|
|
} catch (Exception $exception) {
|
|
return $this->handleFailure($exception);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param $response
|
|
* @param $data
|
|
*
|
|
* @return bool
|
|
*/
|
|
private function handleSuccess($response, $data)
|
|
{
|
|
if (isset($data['invitation'])) {
|
|
$invitation = $data['invitation'];
|
|
$invoice = $invitation->invoice;
|
|
$messageId = false;
|
|
|
|
// Track the Postmark message id
|
|
if (isset($_ENV['POSTMARK_API_TOKEN']) && $response) {
|
|
$json = json_decode((string) $response->getBody());
|
|
$messageId = $json->MessageID;
|
|
}
|
|
|
|
$notes = isset($data['notes']) ? $data['notes'] : false;
|
|
$invoice->markInvitationSent($invitation, $messageId, true, $notes);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param $exception
|
|
*
|
|
* @return string
|
|
*/
|
|
private function handleFailure($exception)
|
|
{
|
|
if (isset($_ENV['POSTMARK_API_TOKEN']) && method_exists($exception, 'getResponse')) {
|
|
$response = $exception->getResponse();
|
|
|
|
if (! $response) {
|
|
$error = trans('texts.postmark_error', ['link' => link_to('https://status.postmarkapp.com/')]);
|
|
Utils::logError($error);
|
|
|
|
if (config('queue.default') === 'sync') {
|
|
return $error;
|
|
} else {
|
|
throw $exception;
|
|
}
|
|
}
|
|
|
|
$response = $response->getBody()->getContents();
|
|
$response = json_decode($response);
|
|
$emailError = nl2br($response->Message);
|
|
} else {
|
|
$emailError = $exception->getMessage();
|
|
}
|
|
|
|
if (isset($data['invitation'])) {
|
|
$invitation = $data['invitation'];
|
|
$invitation->email_error = $emailError;
|
|
$invitation->save();
|
|
} elseif (! Utils::isNinjaProd()) {
|
|
Utils::logError(Utils::getErrorString($exception));
|
|
}
|
|
|
|
return $emailError;
|
|
}
|
|
}
|