diff --git a/resources/views/email/contact-message.blade.php b/resources/views/email/contact-message.blade.php index d4111db..9c58fe1 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 Meet

diff --git a/resources/views/email/customer-branded.blade.php b/resources/views/email/customer-branded.blade.php index 81411c5..d7e4f8c 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 Meet

diff --git a/tests/Feature/MeetEmailBrandingTest.php b/tests/Feature/MeetEmailBrandingTest.php index 7b63ed7..28c9d97 100644 --- a/tests/Feature/MeetEmailBrandingTest.php +++ b/tests/Feature/MeetEmailBrandingTest.php @@ -94,7 +94,7 @@ class MeetEmailBrandingTest extends TestCase && str_contains($html, 'Meet Corp') && str_contains($html, $logoUrl) && ! str_contains($html, 'ladillmeet-logo-email') - && ! str_contains($html, 'Sent via Ladill Meet'); + && str_contains($html, 'Sent via Ladill Meet'); }); } }