From d938acf90976c73832228e011150c6e2a8b5326c Mon Sep 17 00:00:00 2001 From: isaacclad Date: Sun, 12 Jul 2026 20:14:39 +0000 Subject: [PATCH] Add Sent via Ladill Queue to branded outbound emails. Co-authored-by: Cursor --- resources/views/email/contact-message.blade.php | 1 + resources/views/email/customer-branded.blade.php | 1 + tests/Feature/QueueEmailBrandingTest.php | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/resources/views/email/contact-message.blade.php b/resources/views/email/contact-message.blade.php index d4111db..8095b06 100644 --- a/resources/views/email/contact-message.blade.php +++ b/resources/views/email/contact-message.blade.php @@ -24,6 +24,7 @@ @if (! empty($companyName))

{{ $companyName }}

@endif +

Sent via Ladill Queue

diff --git a/resources/views/email/customer-branded.blade.php b/resources/views/email/customer-branded.blade.php index 81411c5..9c94b6b 100644 --- a/resources/views/email/customer-branded.blade.php +++ b/resources/views/email/customer-branded.blade.php @@ -17,6 +17,7 @@ {!! $bodyHtml !!}

{{ $companyName }}

+

Sent via Ladill Queue

diff --git a/tests/Feature/QueueEmailBrandingTest.php b/tests/Feature/QueueEmailBrandingTest.php index 667ba6f..fc5ac93 100644 --- a/tests/Feature/QueueEmailBrandingTest.php +++ b/tests/Feature/QueueEmailBrandingTest.php @@ -110,7 +110,7 @@ class QueueEmailBrandingTest extends TestCase && str_contains($html, 'Acme Queue Co') && str_contains($html, $logoUrl) && ! str_contains($html, 'ladillqueue-logo') - && ! str_contains($html, 'Sent via Ladill'); + && str_contains($html, 'Sent via Ladill Queue'); }); } @@ -152,7 +152,7 @@ class QueueEmailBrandingTest extends TestCase && $mail->logoUrl === null && str_contains($html, 'Plain Name Org') && ! str_contains($html, 'ladillqueue-logo') - && ! str_contains($html, 'Sent via Ladill'); + && str_contains($html, 'Sent via Ladill Queue'); }); } }