2022-03-23 22:34:52 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-03-23 22:34:52 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Mail\Ninja;
|
|
|
|
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Mail\Mailable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
use Illuminate\Support\Facades\App;
|
|
|
|
|
|
|
|
class GmailTokenInvalid 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.gmail_credentials_invalid_subject');
|
|
|
|
$this->body = ctrans('texts.gmail_credentials_invalid_body');
|
|
|
|
$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.gmail_credentials_invalid_subject'))
|
|
|
|
->view('email.admin.email_quota_exceeded');
|
|
|
|
}
|
|
|
|
}
|