Add Sent via Ladill Queue to branded outbound emails.
Deploy Ladill Queue / deploy (push) Successful in 1m1s

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-12 20:14:39 +00:00
co-authored by Cursor
parent 2c2fcf9659
commit d938acf909
3 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -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');
});
}
}