mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 23:22:52 +01:00
88 lines
1.9 KiB
PHP
88 lines
1.9 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 App\Models\Company;
|
|
use App\Models\User;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Mail\Mailables\Content;
|
|
use Illuminate\Mail\Mailables\Envelope;
|
|
use Illuminate\Mail\Mailables\Headers;
|
|
|
|
class StripeConnectFailed extends Mailable
|
|
{
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(public User $user, public Company $company)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Get the message envelope.
|
|
*
|
|
* @return \Illuminate\Mail\Mailables\Envelope
|
|
*/
|
|
public function envelope()
|
|
{
|
|
return new Envelope(
|
|
subject: "Stripe Connect not configured, please login and connect.",
|
|
from: config('ninja.contact.email'),
|
|
to: $this->user->email, //@phpstan-ignore-line
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the message content definition.
|
|
*
|
|
* @return \Illuminate\Mail\Mailables\Content
|
|
*/
|
|
public function content()
|
|
{
|
|
|
|
return new Content(
|
|
view: 'email.einvoice.peppol_purchase_allocation_failed',
|
|
text: 'email.einvoice.peppol_purchase_allocation_failed_text',
|
|
with: [
|
|
|
|
]
|
|
);
|
|
}
|
|
|
|
|
|
/**
|
|
* Get the attachments for the message.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function attachments()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* Get the message headers.
|
|
*
|
|
* @return \Illuminate\Mail\Mailables\Headers
|
|
*/
|
|
public function headers()
|
|
{
|
|
return new Headers(
|
|
messageId: null,
|
|
references: [],
|
|
text:['' => ''],
|
|
);
|
|
}
|
|
}
|