Add Sent via Ladill Queue to branded outbound emails.
Deploy Ladill Queue / deploy (push) Successful in 1m1s
Deploy Ladill Queue / deploy (push) Successful in 1m1s
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -24,6 +24,7 @@
|
|||||||
@if (! empty($companyName))
|
@if (! empty($companyName))
|
||||||
<p style="margin-top:20px;text-align:center;font-size:13px;color:#94a3b8;">{{ $companyName }}</p>
|
<p style="margin-top:20px;text-align:center;font-size:13px;color:#94a3b8;">{{ $companyName }}</p>
|
||||||
@endif
|
@endif
|
||||||
|
<p style="margin-top:8px;text-align:center;font-size:12px;color:#94a3b8;">Sent via Ladill Queue</p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
{!! $bodyHtml !!}
|
{!! $bodyHtml !!}
|
||||||
</div>
|
</div>
|
||||||
<p style="margin-top:20px;text-align:center;font-size:13px;color:#94a3b8;">{{ $companyName }}</p>
|
<p style="margin-top:20px;text-align:center;font-size:13px;color:#94a3b8;">{{ $companyName }}</p>
|
||||||
|
<p style="margin-top:8px;text-align:center;font-size:12px;color:#94a3b8;">Sent via Ladill Queue</p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ class QueueEmailBrandingTest extends TestCase
|
|||||||
&& str_contains($html, 'Acme Queue Co')
|
&& str_contains($html, 'Acme Queue Co')
|
||||||
&& str_contains($html, $logoUrl)
|
&& str_contains($html, $logoUrl)
|
||||||
&& ! str_contains($html, 'ladillqueue-logo')
|
&& ! 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
|
&& $mail->logoUrl === null
|
||||||
&& str_contains($html, 'Plain Name Org')
|
&& str_contains($html, 'Plain Name Org')
|
||||||
&& ! str_contains($html, 'ladillqueue-logo')
|
&& ! str_contains($html, 'ladillqueue-logo')
|
||||||
&& ! str_contains($html, 'Sent via Ladill');
|
&& str_contains($html, 'Sent via Ladill Queue');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user