mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Mail\Mailable;
|
|
|
|
class TestMailServer extends Mailable
|
|
{
|
|
public $support_messages;
|
|
|
|
public $from_email;
|
|
|
|
public function __construct($support_messages, $from_email)
|
|
{
|
|
$this->support_messages = $support_messages;
|
|
$this->from_email = $from_email;
|
|
}
|
|
|
|
/**
|
|
* Test Server mail.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
$settings = new \stdClass();
|
|
$settings->primary_color = '#4caf50';
|
|
$settings->email_style = 'dark';
|
|
$settings->email_alignment = 'left';
|
|
|
|
return $this->from(config('mail.from.address'), config('mail.from.name'))
|
|
->subject(ctrans('texts.email'))
|
|
->markdown('email.support.message', [
|
|
'support_message' => $this->support_messages,
|
|
'system_info' => '',
|
|
'laravel_log' => [],
|
|
'settings' => $settings,
|
|
]);
|
|
}
|
|
}
|