mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
36 lines
812 B
PHP
36 lines
812 B
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Mail\Mailables\Content;
|
|
use Illuminate\Mail\Mailables\Envelope;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class UserInvite extends Mailable
|
|
{
|
|
use Queueable;
|
|
use SerializesModels;
|
|
|
|
public function __construct(private readonly User $invitee)
|
|
{
|
|
}
|
|
|
|
public function content(): Content
|
|
{
|
|
return new Content(
|
|
markdown: 'emails.users.invite',
|
|
with: [
|
|
'invitee' => $this->invitee,
|
|
'url' => url("/#/invitation/accept/{$this->invitee->invitation_token}"),
|
|
],
|
|
);
|
|
}
|
|
|
|
public function envelope(): Envelope
|
|
{
|
|
return new Envelope(subject: 'Invitation to join Koel');
|
|
}
|
|
}
|