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'); }); } }