- Add email branding columns to organisations table (logo, color, reply-to, sender name, footer)
- Create MailBrandingService for resolving per-org branding with defaults
- Create CrewliMailable abstract base class with branded from/reply-to
- Create shared Blade layout (mail.layouts.crewli) with inline CSS
- Refactor Registration*Mail and InvitationMail to extend CrewliMailable
- Add config/crewli.php for platform-wide defaults (portal_url, app_url, logo)
- Add dev-only /mail-preview/{type} route for browser email previewing
- Update Organisation model, resource, and form requests with branding fields
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Mail;
|
|
|
|
use App\Models\UserInvitation;
|
|
use Illuminate\Mail\Mailables\Content;
|
|
use Illuminate\Mail\Mailables\Envelope;
|
|
|
|
final class InvitationMail extends CrewliMailable
|
|
{
|
|
public UserInvitation $invitation;
|
|
|
|
public function __construct(UserInvitation $invitation)
|
|
{
|
|
parent::__construct($invitation->organisation);
|
|
$this->invitation = $invitation;
|
|
}
|
|
|
|
public function envelope(): Envelope
|
|
{
|
|
return new Envelope(
|
|
subject: "Je bent uitgenodigd voor {$this->invitation->organisation->name}",
|
|
);
|
|
}
|
|
|
|
public function content(): Content
|
|
{
|
|
$this->buildBranding();
|
|
|
|
return new Content(
|
|
view: 'mail.invitation',
|
|
with: [
|
|
'acceptUrl' => config('crewli.app_url') . '/invitations/' . $this->invitation->token . '/accept',
|
|
'inviterName' => $this->invitation->invitedBy?->name ?? 'Een beheerder',
|
|
'role' => $this->invitation->role,
|
|
'expiresAt' => $this->invitation->expires_at,
|
|
],
|
|
);
|
|
}
|
|
}
|