Use PNG Ladill Events logo in all transactional email templates.
Deploy Ladill Events / deploy (push) Successful in 1m7s

Load ladillevents-logo-email.png via asset() on a light header and extend the branded layout to join, registration, and programme emails.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-03 17:30:21 +00:00
co-authored by Cursor
parent 1746874aaa
commit 5662ac9454
5 changed files with 109 additions and 44 deletions
@@ -1,13 +1,34 @@
<!DOCTYPE html>
<html>
<body style="font-family: sans-serif; color: #1e293b; line-height: 1.5;">
@if($attendeeName)
<p>Hi {{ $attendeeName }},</p>
@endif
<p>Here is everything you need for <strong>{{ $eventName }}</strong>:</p>
<ul>
<li><a href="{{ $programmeUrl }}">View programme</a></li>
<li><a href="{{ $joinUrl }}">Join virtual session</a></li>
</ul>
</body>
</html>
@extends('mail.notifications.layout')
@section('email-header')
@include('mail.partials.brand-header', ['brand' => 'events'])
@endsection
@section('email-footer')
@include('mail.partials.brand-footer', ['brand' => 'events'])
@endsection
@section('content')
@if($attendeeName)
<p class="email-text">Hi {{ $attendeeName }},</p>
@endif
<h1 class="email-title">{{ $eventName }}</h1>
<p class="email-text">
Here is everything you need for <strong>{{ $eventName }}</strong>:
</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin:24px 0;">
<tr>
<td align="center">
<a href="{{ $programmeUrl }}" class="email-button" style="display:inline-block;background:#4f46e5;color:#ffffff;text-decoration:none;padding:12px 28px;border-radius:10px;font-size:14px;font-weight:600;margin:8px 4px;">
View programme
</a>
<a href="{{ $joinUrl }}" class="email-button-secondary" style="display:inline-block;background:#f1f5f9;color:#0f172a;text-decoration:none;padding:12px 24px;border-radius:8px;font-size:14px;font-weight:600;margin:8px 4px;">
Join virtual session
</a>
</td>
</tr>
</table>
@endsection