feat(email): text colour menu in WYSIWYG (LinumIQ blue + presets)
This commit is contained in:
@@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
const DE_HTML = `\
|
||||
<h2 style="color:#3070c0;margin:0 0 8px;font-family:Arial,Helvetica,sans-serif;">{{companyName}}</h2>
|
||||
<h3 style="color:#3070c0;margin:0 0 16px;font-family:Arial,Helvetica,sans-serif;">Danke für deinen Einkauf!</h3>
|
||||
<h2 style="margin:0 0 8px;font-family:Arial,Helvetica,sans-serif;"><span style="color:#0883DA">{{companyName}}</span></h2>
|
||||
<h3 style="margin:0 0 16px;font-family:Arial,Helvetica,sans-serif;"><span style="color:#0883DA">Danke für deinen Einkauf!</span></h3>
|
||||
<p style="font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:1.5;">
|
||||
Die Rechnung befindet sich im Anhang.
|
||||
</p>
|
||||
@@ -22,14 +22,14 @@ Besten Dank!
|
||||
<p style="margin-top:24px;">
|
||||
<img src="cid:invoice-logo" alt="{{companyName}}" style="max-height:48px;">
|
||||
</p>
|
||||
<p style="font-family:Arial,Helvetica,sans-serif;font-size:13px;line-height:1.6;color:#3070c0;">
|
||||
✉ <a href="mailto:{{shopEmail}}" style="color:#3070c0;">Kontakt</a><br>
|
||||
🌐 <a href="{{shopWebsite}}" style="color:#3070c0;">{{shopWebsite}}</a>
|
||||
<p style="font-family:Arial,Helvetica,sans-serif;font-size:13px;line-height:1.6;color:#0883DA;">
|
||||
✉ <a href="mailto:{{shopEmail}}" style="color:#0883DA;">Kontakt</a><br>
|
||||
🌐 <a href="{{shopWebsite}}" style="color:#0883DA;">{{shopWebsite}}</a>
|
||||
</p>`;
|
||||
|
||||
const EN_HTML = `\
|
||||
<h2 style="color:#3070c0;margin:0 0 8px;font-family:Arial,Helvetica,sans-serif;">{{companyName}}</h2>
|
||||
<h3 style="color:#3070c0;margin:0 0 16px;font-family:Arial,Helvetica,sans-serif;">Thank you for your purchase!</h3>
|
||||
<h2 style="margin:0 0 8px;font-family:Arial,Helvetica,sans-serif;"><span style="color:#0883DA">{{companyName}}</span></h2>
|
||||
<h3 style="margin:0 0 16px;font-family:Arial,Helvetica,sans-serif;"><span style="color:#0883DA">Thank you for your purchase!</span></h3>
|
||||
<p style="font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:1.5;">
|
||||
Please find the invoice attached.
|
||||
</p>
|
||||
@@ -41,9 +41,9 @@ Thanks a lot!
|
||||
<p style="margin-top:24px;">
|
||||
<img src="cid:invoice-logo" alt="{{companyName}}" style="max-height:48px;">
|
||||
</p>
|
||||
<p style="font-family:Arial,Helvetica,sans-serif;font-size:13px;line-height:1.6;color:#3070c0;">
|
||||
✉ <a href="mailto:{{shopEmail}}" style="color:#3070c0;">Contact</a><br>
|
||||
🌐 <a href="{{shopWebsite}}" style="color:#3070c0;">{{shopWebsite}}</a>
|
||||
<p style="font-family:Arial,Helvetica,sans-serif;font-size:13px;line-height:1.6;color:#0883DA;">
|
||||
✉ <a href="mailto:{{shopEmail}}" style="color:#0883DA;">Contact</a><br>
|
||||
🌐 <a href="{{shopWebsite}}" style="color:#0883DA;">{{shopWebsite}}</a>
|
||||
</p>`;
|
||||
|
||||
export const DEFAULT_EMAIL_SUBJECT_DE = "Rechnung {{invoiceNumber}} – {{companyName}}";
|
||||
|
||||
Reference in New Issue
Block a user