1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Mail/SupportMessageSent.php
2021-07-13 08:07:09 +10:00

76 lines
2.1 KiB
PHP

<?php
namespace App\Mail;
use App\Utils\Ninja;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use LimitIterator;
use SplFileObject;
class SupportMessageSent extends Mailable
{
// use Queueable, SerializesModels;
public $support_message;
public $send_logs;
public function __construct($support_message, $send_logs)
{
$this->support_message = $support_message;
$this->send_logs = $send_logs;
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
$system_info = null;
$log_lines = [];
/*
* With self-hosted version of Ninja,
* we are going to bundle system-level info
* and last 10 lines of laravel.log file.
*/
if (Ninja::isSelfHost() && $this->send_logs !== false) {
$system_info = Ninja::getDebugInfo();
$log_file = new SplFileObject(sprintf('%s/laravel.log', base_path('storage/logs')));
$log_file->seek(PHP_INT_MAX);
$last_line = $log_file->key();
$lines = new LimitIterator($log_file, $last_line - 100, $last_line);
$log_lines = iterator_to_array($lines);
}
$account = auth()->user()->account;
$plan = $account->plan ?: 'Forever Free';
$company = auth()->user()->company();
$user = auth()->user();
if(Ninja::isHosted())
$subject = "Hosted {$user->present()->name} - [{$plan} - {$company->db}]";
else
$subject = "Self Host {$user->present()->name} - [{$plan} - {$company->db}]";
return $this->from(config('mail.from.address'), $user->present()->name())
->replyTo($user->email, $user->present()->name())
->subject($subject)
->view('email.support.message', [
'support_message' => $this->support_message,
'system_info' => $system_info,
'laravel_log' => $log_lines,
'logo' => $company->present()->logo(),
]);
}
}