mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
62 lines
1.5 KiB
PHP
62 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Mail\Ninja;
|
|
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Support\Facades\App;
|
|
|
|
class EmailQuotaExceeded extends Mailable
|
|
{
|
|
public $company;
|
|
|
|
public $settings;
|
|
|
|
public $logo;
|
|
|
|
public $title;
|
|
|
|
public $body;
|
|
|
|
public $whitelabel;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($company)
|
|
{
|
|
$this->company = $company;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
App::setLocale($this->company->getLocale());
|
|
|
|
$this->settings = $this->company->settings;
|
|
$this->logo = $this->company->present()->logo();
|
|
$this->title = ctrans('texts.email_quota_exceeded_subject');
|
|
$this->body = ctrans('texts.email_quota_exceeded_body', ['quota' => $this->company->account->getDailyEmailLimit()]);
|
|
$this->whitelabel = $this->company->account->isPaid();
|
|
$this->replyTo('contact@invoiceninja.com', 'Contact');
|
|
|
|
return $this->from(config('mail.from.address'), config('mail.from.name'))
|
|
->subject(ctrans('texts.email_quota_exceeded_subject'))
|
|
->view('email.admin.email_quota_exceeded');
|
|
}
|
|
}
|