mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php namespace App\Ninja\Mailers;
|
|
|
|
use Exception;
|
|
use Mail;
|
|
use Utils;
|
|
use App\Models\Invoice;
|
|
|
|
class Mailer
|
|
{
|
|
public function sendTo($toEmail, $fromEmail, $fromName, $subject, $view, $data = [])
|
|
{
|
|
$views = [
|
|
'emails.'.$view.'_html',
|
|
'emails.'.$view.'_text',
|
|
];
|
|
|
|
try {
|
|
Mail::send($views, $data, function ($message) use ($toEmail, $fromEmail, $fromName, $subject, $data) {
|
|
|
|
$replyEmail = $fromEmail;
|
|
$fromEmail = CONTACT_EMAIL;
|
|
|
|
if(isset($data['invoice_id'])) {
|
|
$invoice = Invoice::with('account')->where('id', '=', $data['invoice_id'])->get()->first();
|
|
if($invoice->account->pdf_email_attachment && file_exists($invoice->getPDFPath())) {
|
|
$message->attach(
|
|
$invoice->getPDFPath(),
|
|
array('as' => $invoice->getFileName(), 'mime' => 'application/pdf')
|
|
);
|
|
}
|
|
}
|
|
|
|
$message->to($toEmail)->from($fromEmail, $fromName)->replyTo($replyEmail, $fromName)->subject($subject);
|
|
});
|
|
|
|
return true;
|
|
} catch (Exception $e) {
|
|
$response = $e->getResponse()->getBody()->getContents();
|
|
$response = json_decode($response);
|
|
return nl2br($response->Message);
|
|
}
|
|
}
|
|
}
|