fix email header background color in gmail

This commit is contained in:
David Roizenman 2021-04-02 00:21:56 -07:00
parent 3be5f36064
commit 5ea8d7ee5e
No known key found for this signature in database
GPG Key ID: CD7B405D13E241B6

View File

@ -2,6 +2,7 @@
if(!isset($design)) { if(!isset($design)) {
$design = 'light'; $design = 'light';
} }
$primary_color = isset($settings) ? $settings->primary_color : '#4caf50';
@endphp @endphp
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
@ -16,11 +17,11 @@
<style type="text/css"> <style type="text/css">
:root { :root {
--primary-color: {{ isset($settings) ? $settings->primary_color : '#4caf50' }}; --primary-color: {{ $primary_color }};
} }
.primary-color-bg { .primary-color-bg {
background-color: {{ isset($settings) ? $settings->primary_color : '#4caf50' }}; background-color: {{ $primary_color }};
} }
#email-content h1, h2, h3, h4 { #email-content h1, h2, h3, h4 {
@ -38,7 +39,7 @@
} }
.button { .button {
background-color: {{ isset($settings) ? $settings->primary_color : '#4caf50' }}; background-color: {{ $primary_color }};
color: white; color: white;
padding: 10px 16px; padding: 10px 16px;
text-decoration: none; text-decoration: none;
@ -68,7 +69,7 @@
<table align="center" cellpadding="0" cellspacing="0" width="600" <table align="center" cellpadding="0" cellspacing="0" width="600"
style="box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06)"> style="box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06)">
<tr> <tr>
<td align="center" bgcolor="#4caf50" class="primary-color-bg" style="padding: 40px 0 30px 0;"> <td align="center" bgcolor="{{ $primary_color }}" class="primary-color-bg" style="padding: 40px 0 30px 0;">
{{ $header }} {{ $header }}
</td> </td>
</tr> </tr>