mirror of https://github.com/Budibase/budibase.git
14 changed files with 710 additions and 357 deletions
@ -0,0 +1,60 @@ |
|||
const setup = require("./utilities") |
|||
const { EmailTemplatePurpose } = require("../../../constants") |
|||
const nodemailer = require("nodemailer") |
|||
const fetch = require("node-fetch") |
|||
|
|||
describe("/api/admin/email", () => { |
|||
let request = setup.getRequest() |
|||
let config = setup.getConfig() |
|||
|
|||
beforeAll(async () => { |
|||
await config.init() |
|||
}) |
|||
|
|||
afterAll(setup.afterAll) |
|||
|
|||
async function sendRealEmail(purpose) { |
|||
await config.saveEtherealSmtpConfig() |
|||
await config.saveSettingsConfig() |
|||
const res = await request |
|||
.post(`/api/admin/email/send`) |
|||
.send({ |
|||
email: "test@test.com", |
|||
purpose, |
|||
}) |
|||
.set(config.defaultHeaders()) |
|||
.expect("Content-Type", /json/) |
|||
.expect(200) |
|||
expect(res.body.message).toBeDefined() |
|||
const testUrl = nodemailer.getTestMessageUrl(res.body) |
|||
expect(testUrl).toBeDefined() |
|||
const response = await fetch(testUrl) |
|||
const text = await response.text() |
|||
let toCheckFor |
|||
switch (purpose) { |
|||
case EmailTemplatePurpose.WELCOME: |
|||
toCheckFor = `Thanks for getting started with Budibase's Budibase platform.` |
|||
break |
|||
case EmailTemplatePurpose.INVITATION: |
|||
toCheckFor = `Use the button below to set up your account and get started:` |
|||
break |
|||
case EmailTemplatePurpose.PASSWORD_RECOVERY: |
|||
toCheckFor = `You recently requested to reset your password for your Budibase account in your Budibase platform` |
|||
break |
|||
} |
|||
expect(text).toContain(toCheckFor) |
|||
} |
|||
|
|||
it("should be able to send a welcome email", async () => { |
|||
await sendRealEmail(EmailTemplatePurpose.WELCOME) |
|||
|
|||
}) |
|||
|
|||
it("should be able to send a invitation email", async () => { |
|||
await sendRealEmail(EmailTemplatePurpose.INVITATION) |
|||
}) |
|||
|
|||
it("should be able to send a password recovery email", async () => { |
|||
const res = await sendRealEmail(EmailTemplatePurpose.PASSWORD_RECOVERY) |
|||
}) |
|||
}) |
|||
@ -1,83 +1,32 @@ |
|||
<!doctype html> |
|||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> |
|||
<!-- Based on templates: https://github.com/wildbit/postmark-templates/blob/master/templates/plain --> |
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|||
<html xmlns="http://www.w3.org/1999/xhtml"> |
|||
<head> |
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<head> |
|||
<meta charset="utf-8"> |
|||
<meta name="viewport" content="width=device-width"> |
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|||
<meta name="x-apple-disable-message-reformatting"> |
|||
<style> |
|||
{{ styles }} |
|||
</style> |
|||
</head> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|||
<meta name="x-apple-disable-message-reformatting" /> |
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
|||
<meta name="color-scheme" content="light dark" /> |
|||
<meta name="supported-color-schemes" content="light dark" /> |
|||
<title></title> |
|||
<style type="text/css" rel="stylesheet" media="all"> |
|||
{{ styles }} |
|||
</style> |
|||
<!--[if mso]> |
|||
<style type="text/css"> |
|||
.f-fallback { |
|||
font-family: Arial, sans-serif; |
|||
} |
|||
</style> |
|||
<![endif]--> |
|||
</head> |
|||
<body> |
|||
<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: auto;"> |
|||
<tbody> |
|||
{{ body }} |
|||
<table class="email-footer" align="center" width="570" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<tr> |
|||
<td class="bg_white logo" style="padding: 1em 2.5em; text-align: center"> |
|||
<h1><a href="{{ companyUrl }}">{{ company }}</a></h1> |
|||
<td class="content-cell" align="center"> |
|||
<p class="f-fallback sub align-center">© 2021 {{ company }}. All rights reserved.</p> |
|||
</td> |
|||
</tr> |
|||
<tr> |
|||
<td class="bg_white logo" style="padding: 1em 2.5em; text-align: center"> |
|||
{{ body }} |
|||
</td> |
|||
</tr> |
|||
<tr> |
|||
<td class="bg_white logo" style="padding: 1em 2.5em; text-align: center"> |
|||
<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: auto;"> |
|||
<tbody><tr> |
|||
<td valign="middle" class="bg_black footer email-section"> |
|||
<table> |
|||
<tbody><tr> |
|||
<td valign="top" width="50%" style="padding-top: 20px;"> |
|||
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%"> |
|||
<tbody><tr> |
|||
<td style="text-align: left; padding-right: 10px;"> |
|||
<h3 class="heading">{{ company }}</h3> |
|||
<p>Company information.</p> |
|||
</td> |
|||
</tr> |
|||
</tbody></table> |
|||
</td> |
|||
<td valign="top" width="50%" style="padding-top: 20px;"> |
|||
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%"> |
|||
<tbody><tr> |
|||
<td style="text-align: left; padding-left: 10px;"> |
|||
<h3 class="heading"><a href="{{ platformUrl }}">Budibase Platform</a></h3> |
|||
</td> |
|||
</tr> |
|||
</tbody></table> |
|||
</td> |
|||
</tr> |
|||
</tbody></table> |
|||
</td> |
|||
</tr> |
|||
<tr> |
|||
<td valign="middle" class="bg_black footer email-section"> |
|||
<table> |
|||
<tbody><tr> |
|||
<td valign="top" width="50%"> |
|||
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%"> |
|||
<tbody><tr> |
|||
<td style="text-align: left; padding-right: 10px;"> |
|||
<p>© 2021 {{ company }}. All Rights Reserved</p> |
|||
</td> |
|||
</tr> |
|||
</tbody></table> |
|||
</td> |
|||
</tr> |
|||
</tbody></table> |
|||
</td> |
|||
</tr> |
|||
</tbody> |
|||
</table> |
|||
</td> |
|||
</tr> |
|||
</tbody> |
|||
</table> |
|||
</body> |
|||
</html> |
|||
@ -1,14 +1,67 @@ |
|||
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%"> |
|||
<tbody> |
|||
<!-- Based on template: https://github.com/wildbit/postmark-templates/blob/master/templates/plain/user-invitation/content.html --> |
|||
<span class="preheader">You've been invited to use {{ company }}'s Budibase platform!</span> |
|||
<table class="email-wrapper" width="100%" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<tr> |
|||
<td class="bg_dark email-section" style="text-align:center;"> |
|||
<div class="heading-section heading-section-white"> |
|||
<span class="subheading">Budibase Invitation</span> |
|||
<h2>You've been invited to join {{ company }}'s Budibase platform!</h2> |
|||
<p>Please follow the below link to finish your registration.</p> |
|||
<p><a href="{{ registrationUrl }}" class="btn btn-primary">Finish registration</a></p> |
|||
</div> |
|||
<td align="center"> |
|||
<table class="email-content" width="100%" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<tr> |
|||
<td class="email-masthead"> |
|||
<a href="{{ platformUrl }}" class="f-fallback email-masthead_name"> |
|||
{{ company }} |
|||
</a> |
|||
</td> |
|||
</tr> |
|||
<!-- Email Body --> |
|||
<tr> |
|||
<td class="email-body" width="570" cellpadding="0" cellspacing="0"> |
|||
<table class="email-body_inner" align="center" width="570" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<!-- Body content --> |
|||
<tr> |
|||
<td class="content-cell"> |
|||
<div class="f-fallback"> |
|||
<h1>Hi, {{ email }}!</h1> |
|||
<p> |
|||
{{#if request}} |
|||
{{ request.inviter }} has invited you to use {{ company }}'s Budibase platform.< |
|||
{{else}} |
|||
You've been invited to use {{ company }}'s Budibase platform. |
|||
{{/if}} |
|||
Use the button below to set up your account and get started: |
|||
</p> |
|||
<!-- Action --> |
|||
<table class="body-action" align="center" width="100%" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<tr> |
|||
<td align="center"> |
|||
<table width="100%" border="0" cellspacing="0" cellpadding="0" role="presentation"> |
|||
<tr> |
|||
<td align="center"> |
|||
<a href="{{ registrationUrl }}" class="f-fallback button" target="_blank">Set up account</a> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
<p>If you have any questions contact your Budibase platform administrator.</p> |
|||
<p>Welcome aboard, |
|||
<br>The {{ company }} Team</p> |
|||
<p><strong>P.S.</strong> Need help getting started? Check out our <a href="{{ docsUrl }}">help documentation</a>.</p> |
|||
<!-- Sub copy --> |
|||
<table class="body-sub" role="presentation"> |
|||
<tr> |
|||
<td> |
|||
<p class="f-fallback sub">If you’re having trouble with the button above, copy and paste the URL below into your web browser.</p> |
|||
<p class="f-fallback sub">{{ registrationUrl }}</p> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</div> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</td> |
|||
</tr> |
|||
</tbody> |
|||
</table> |
|||
@ -1,15 +1,62 @@ |
|||
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%"> |
|||
<tbody> |
|||
<!-- Based on template: https://github.com/wildbit/postmark-templates/blob/master/templates/plain/password-reset/content.html --> |
|||
<span class="preheader">Use this link to reset your password. The link is only valid for 24 hours.</span> |
|||
<table class="email-wrapper" width="100%" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<tr> |
|||
<td class="bg_dark email-section" style="text-align:center;"> |
|||
<div class="heading-section heading-section-white"> |
|||
<span class="subheading">Budibase Password reset</span> |
|||
<h2>Please follow the below link to reset your password.</h2> |
|||
<p><a href="{{ resetUrl }}" class="btn btn-primary">Reset password</a></p> |
|||
<p>This password reset was required for {{ email }} if you did not |
|||
request this then please contact your administrator.</p> |
|||
</div> |
|||
<td align="center"> |
|||
<table class="email-content" width="100%" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<tr> |
|||
<td class="email-masthead"> |
|||
<a href="{{ platformUrl }}" class="f-fallback email-masthead_name"> |
|||
{{ company }} |
|||
</a> |
|||
</td> |
|||
</tr> |
|||
<!-- Email Body --> |
|||
<tr> |
|||
<td class="email-body" width="570" cellpadding="0" cellspacing="0"> |
|||
<table class="email-body_inner" align="center" width="570" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<!-- Body content --> |
|||
<tr> |
|||
<td class="content-cell"> |
|||
<div class="f-fallback"> |
|||
<h1>Hi {{ email }},</h1> |
|||
<p>You recently requested to reset your password for your {{ company }} account in your Budibase platform. Use the button below to reset it. <strong>This password reset is only valid for the next 24 hours.</strong></p> |
|||
<!-- Action --> |
|||
<table class="body-action" align="center" width="100%" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<tr> |
|||
<td align="center"> |
|||
<table width="100%" border="0" cellspacing="0" cellpadding="0" role="presentation"> |
|||
<tr> |
|||
<td align="center"> |
|||
<a href="{{ resetUrl }}" class="f-fallback button button--green" target="_blank">Reset your password</a> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
{{#if request}} |
|||
<p>For security, this request was received from a {{ request.os }} device.</p> |
|||
{{/if}} |
|||
<p>If you did not request a password reset, please ignore this email or contact support if you have questions.</p> |
|||
<p>Thanks, |
|||
<br>The {{ company }} Team</p> |
|||
<!-- Sub copy --> |
|||
<table class="body-sub" role="presentation"> |
|||
<tr> |
|||
<td> |
|||
<p class="f-fallback sub">If you’re having trouble with the button above, copy and paste the URL below into your web browser.</p> |
|||
<p class="f-fallback sub">{{ resetUrl }}</p> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</div> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</td> |
|||
</tr> |
|||
</tbody> |
|||
</table> |
|||
@ -1,269 +1,408 @@ |
|||
@font-face { |
|||
font-family: 'Playfair Display'; |
|||
font-style: italic; |
|||
font-weight: 400; |
|||
src: url(/fonts.gstatic.com/s/playfairdisplay/v22/nuFkD-vYSZviVYUb_rj3ij__anPXDTnohkk72xU.woff2) format('woff2'); |
|||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; |
|||
} |
|||
html, |
|||
/* Based on templates: https://github.com/wildbit/postmark-templates/blob/master/templates/plain */ |
|||
/* Base ------------------------------ */ |
|||
|
|||
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap'); |
|||
body { |
|||
margin: 0 auto !important; |
|||
padding: 0 !important; |
|||
height: 100% !important; |
|||
width: 100% !important; |
|||
background: #f1f1f1; |
|||
width: 100% !important; |
|||
height: 100%; |
|||
margin: 0; |
|||
-webkit-text-size-adjust: none; |
|||
} |
|||
* { |
|||
-ms-text-size-adjust: 100%; |
|||
-webkit-text-size-adjust: 100%; |
|||
|
|||
a { |
|||
color: #3869D4; |
|||
} |
|||
div[style*="margin: 16px 0"] { |
|||
margin: 0 !important; |
|||
|
|||
a img { |
|||
border: none; |
|||
} |
|||
table, |
|||
|
|||
td { |
|||
mso-table-lspace: 0pt !important; |
|||
mso-table-rspace: 0pt !important; |
|||
word-break: break-word; |
|||
} |
|||
table { |
|||
border-spacing: 0 !important; |
|||
border-collapse: collapse !important; |
|||
table-layout: fixed !important; |
|||
margin: 0 auto !important; |
|||
|
|||
.preheader { |
|||
display: none !important; |
|||
visibility: hidden; |
|||
mso-hide: all; |
|||
font-size: 1px; |
|||
line-height: 1px; |
|||
max-height: 0; |
|||
max-width: 0; |
|||
opacity: 0; |
|||
overflow: hidden; |
|||
} |
|||
/* Type ------------------------------ */ |
|||
|
|||
body, |
|||
td, |
|||
th { |
|||
font-family: "Source Sans Pro", Helvetica, Arial, sans-serif; |
|||
} |
|||
img { |
|||
-ms-interpolation-mode:bicubic; |
|||
|
|||
h1 { |
|||
margin-top: 0; |
|||
color: #333333; |
|||
font-size: 22px; |
|||
font-weight: bold; |
|||
text-align: left; |
|||
} |
|||
a { |
|||
text-decoration: none; |
|||
|
|||
h2 { |
|||
margin-top: 0; |
|||
color: #333333; |
|||
font-size: 16px; |
|||
font-weight: bold; |
|||
text-align: left; |
|||
} |
|||
|
|||
h3 { |
|||
margin-top: 0; |
|||
color: #333333; |
|||
font-size: 14px; |
|||
font-weight: bold; |
|||
text-align: left; |
|||
} |
|||
*[x-apple-data-detectors], /* iOS */ |
|||
.unstyle-auto-detected-links *, |
|||
.aBn { |
|||
border-bottom: 0 !important; |
|||
cursor: default !important; |
|||
color: inherit !important; |
|||
text-decoration: none !important; |
|||
font-size: inherit !important; |
|||
font-family: inherit !important; |
|||
font-weight: inherit !important; |
|||
line-height: inherit !important; |
|||
|
|||
td, |
|||
th { |
|||
font-size: 16px; |
|||
} |
|||
|
|||
p, |
|||
ul, |
|||
ol, |
|||
blockquote { |
|||
margin: .4em 0 1.1875em; |
|||
font-size: 16px; |
|||
line-height: 1.625; |
|||
} |
|||
|
|||
p.sub { |
|||
font-size: 13px; |
|||
} |
|||
/* Utilities ------------------------------ */ |
|||
|
|||
.align-right { |
|||
text-align: right; |
|||
} |
|||
|
|||
.align-left { |
|||
text-align: left; |
|||
} |
|||
|
|||
.align-center { |
|||
text-align: center; |
|||
} |
|||
/* Buttons ------------------------------ */ |
|||
|
|||
.button { |
|||
background-color: #3869D4; |
|||
border-top: 10px solid #3869D4; |
|||
border-right: 18px solid #3869D4; |
|||
border-bottom: 10px solid #3869D4; |
|||
border-left: 18px solid #3869D4; |
|||
display: inline-block; |
|||
color: #FFF; |
|||
text-decoration: none; |
|||
border-radius: 3px; |
|||
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); |
|||
-webkit-text-size-adjust: none; |
|||
box-sizing: border-box; |
|||
} |
|||
|
|||
.button--green { |
|||
background-color: #22BC66; |
|||
border-top: 10px solid #22BC66; |
|||
border-right: 18px solid #22BC66; |
|||
border-bottom: 10px solid #22BC66; |
|||
border-left: 18px solid #22BC66; |
|||
} |
|||
|
|||
.button--red { |
|||
background-color: #FF6136; |
|||
border-top: 10px solid #FF6136; |
|||
border-right: 18px solid #FF6136; |
|||
border-bottom: 10px solid #FF6136; |
|||
border-left: 18px solid #FF6136; |
|||
} |
|||
.a6S { |
|||
display: none !important; |
|||
opacity: 0.01 !important; |
|||
|
|||
@media only screen and (max-width: 500px) { |
|||
.button { |
|||
width: 100% !important; |
|||
text-align: center !important; |
|||
} |
|||
} |
|||
/* Attribute list ------------------------------ */ |
|||
|
|||
.attributes { |
|||
margin: 0 0 21px; |
|||
} |
|||
|
|||
.attributes_content { |
|||
background-color: #F4F4F7; |
|||
padding: 16px; |
|||
} |
|||
|
|||
.attributes_item { |
|||
padding: 0; |
|||
} |
|||
/* Related Items ------------------------------ */ |
|||
|
|||
.related { |
|||
width: 100%; |
|||
margin: 0; |
|||
padding: 25px 0 0 0; |
|||
-premailer-width: 100%; |
|||
-premailer-cellpadding: 0; |
|||
-premailer-cellspacing: 0; |
|||
} |
|||
|
|||
.related_item { |
|||
padding: 10px 0; |
|||
color: #CBCCCF; |
|||
font-size: 15px; |
|||
line-height: 18px; |
|||
} |
|||
|
|||
.related_item-title { |
|||
display: block; |
|||
margin: .5em 0 0; |
|||
} |
|||
|
|||
.related_item-thumb { |
|||
display: block; |
|||
padding-bottom: 10px; |
|||
} |
|||
|
|||
.related_heading { |
|||
border-top: 1px solid #CBCCCF; |
|||
text-align: center; |
|||
padding: 25px 0 10px; |
|||
} |
|||
/* Discount Code ------------------------------ */ |
|||
|
|||
.discount { |
|||
width: 100%; |
|||
margin: 0; |
|||
padding: 24px; |
|||
-premailer-width: 100%; |
|||
-premailer-cellpadding: 0; |
|||
-premailer-cellspacing: 0; |
|||
background-color: #F4F4F7; |
|||
border: 2px dashed #CBCCCF; |
|||
} |
|||
|
|||
.discount_heading { |
|||
text-align: center; |
|||
} |
|||
|
|||
.discount_body { |
|||
text-align: center; |
|||
font-size: 15px; |
|||
} |
|||
/* Social Icons ------------------------------ */ |
|||
|
|||
.social { |
|||
width: auto; |
|||
} |
|||
|
|||
.social td { |
|||
padding: 0; |
|||
width: auto; |
|||
} |
|||
.im { |
|||
color: inherit !important; |
|||
} |
|||
img.g-img + div { |
|||
display: none !important; |
|||
} |
|||
@media only screen and (min-device-width: 320px) and (max-device-width: 374px) { |
|||
u ~ div .email-container { |
|||
min-width: 320px !important; |
|||
} |
|||
} |
|||
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) { |
|||
u ~ div .email-container { |
|||
min-width: 375px !important; |
|||
} |
|||
} |
|||
@media only screen and (min-device-width: 414px) { |
|||
u ~ div .email-container { |
|||
min-width: 414px !important; |
|||
} |
|||
} |
|||
.primary{ |
|||
background: #f3a333; |
|||
} |
|||
.bg_white{ |
|||
background: #ffffff; |
|||
} |
|||
.bg_light{ |
|||
background: #fafafa; |
|||
} |
|||
.bg_black{ |
|||
background: #000000; |
|||
} |
|||
.bg_dark{ |
|||
background: rgba(0,0,0,.8); |
|||
} |
|||
.email-section{ |
|||
padding:2.5em; |
|||
} |
|||
.btn{ |
|||
padding: 10px 15px; |
|||
} |
|||
.btn.btn-primary{ |
|||
border-radius: 30px; |
|||
background: #f3a333; |
|||
color: #ffffff; |
|||
} |
|||
h1,h2,h3,h4,h5,h6{ |
|||
font-family: 'Playfair Display', serif; |
|||
color: #000000; |
|||
margin-top: 0; |
|||
} |
|||
body{ |
|||
font-family: 'Montserrat', sans-serif; |
|||
font-weight: 400; |
|||
font-size: 15px; |
|||
line-height: 1.8; |
|||
color: rgba(0,0,0,.4); |
|||
} |
|||
a{ |
|||
color: #f3a333; |
|||
} |
|||
table{ |
|||
} |
|||
.logo h1{ |
|||
margin: 0; |
|||
} |
|||
.logo h1 a{ |
|||
color: #000; |
|||
font-size: 20px; |
|||
font-weight: 700; |
|||
text-transform: uppercase; |
|||
font-family: 'Montserrat', sans-serif; |
|||
} |
|||
.hero{ |
|||
position: relative; |
|||
} |
|||
.hero img{ |
|||
|
|||
} |
|||
.hero .text{ |
|||
color: rgba(255,255,255,.8); |
|||
} |
|||
.hero .text h2{ |
|||
color: #ffffff; |
|||
font-size: 30px; |
|||
margin-bottom: 0; |
|||
} |
|||
.heading-section{ |
|||
} |
|||
.heading-section h2{ |
|||
color: #000000; |
|||
font-size: 28px; |
|||
margin-top: 0; |
|||
line-height: 1.4; |
|||
} |
|||
.heading-section .subheading{ |
|||
margin-bottom: 20px !important; |
|||
display: inline-block; |
|||
font-size: 13px; |
|||
text-transform: uppercase; |
|||
letter-spacing: 2px; |
|||
color: rgba(0,0,0,.4); |
|||
position: relative; |
|||
} |
|||
.heading-section .subheading::after{ |
|||
position: absolute; |
|||
left: 0; |
|||
right: 0; |
|||
bottom: -10px; |
|||
content: ''; |
|||
width: 100%; |
|||
height: 2px; |
|||
background: #f3a333; |
|||
margin: 0 auto; |
|||
} |
|||
.heading-section-white{ |
|||
color: rgba(255,255,255,.8); |
|||
} |
|||
.heading-section-white h2{ |
|||
font-size: 28px; |
|||
line-height: 1; |
|||
padding-bottom: 0; |
|||
} |
|||
.heading-section-white h2{ |
|||
color: #ffffff; |
|||
} |
|||
.heading-section-white .subheading{ |
|||
margin-bottom: 0; |
|||
display: inline-block; |
|||
font-size: 13px; |
|||
text-transform: uppercase; |
|||
letter-spacing: 2px; |
|||
color: rgba(255,255,255,.4); |
|||
} |
|||
.icon{ |
|||
text-align: center; |
|||
} |
|||
.icon img{ |
|||
} |
|||
.text-services{ |
|||
padding: 10px 10px 0; |
|||
text-align: center; |
|||
} |
|||
.text-services h3{ |
|||
font-size: 20px; |
|||
} |
|||
.text-services .meta{ |
|||
text-transform: uppercase; |
|||
font-size: 14px; |
|||
} |
|||
.img{ |
|||
width: 100%; |
|||
height: auto; |
|||
position: relative; |
|||
} |
|||
.img .icon{ |
|||
position: absolute; |
|||
top: 50%; |
|||
left: 0; |
|||
right: 0; |
|||
bottom: 0; |
|||
margin-top: -25px; |
|||
} |
|||
.img .icon a{ |
|||
display: block; |
|||
width: 60px; |
|||
position: absolute; |
|||
top: 0; |
|||
left: 50%; |
|||
margin-left: -25px; |
|||
} |
|||
.counter-text{ |
|||
text-align: center; |
|||
} |
|||
.counter-text .num{ |
|||
display: block; |
|||
color: #ffffff; |
|||
font-size: 34px; |
|||
font-weight: 700; |
|||
} |
|||
.counter-text .name{ |
|||
display: block; |
|||
color: rgba(255,255,255,.9); |
|||
font-size: 13px; |
|||
} |
|||
.footer{ |
|||
color: rgba(255,255,255,.5); |
|||
} |
|||
.footer .heading{ |
|||
color: #ffffff; |
|||
font-size: 20px; |
|||
} |
|||
.footer ul{ |
|||
margin: 0; |
|||
padding: 0; |
|||
} |
|||
.footer ul li{ |
|||
list-style: none; |
|||
margin-bottom: 10px; |
|||
} |
|||
.footer ul li a{ |
|||
color: rgba(255,255,255,1); |
|||
} |
|||
@media screen and (max-width: 500px) { |
|||
.icon{ |
|||
text-align: left; |
|||
} |
|||
.text-services{ |
|||
padding-left: 0; |
|||
padding-right: 20px; |
|||
text-align: left; |
|||
} |
|||
|
|||
.social_icon { |
|||
height: 20px; |
|||
margin: 0 8px 10px 8px; |
|||
padding: 0; |
|||
} |
|||
/* Data table ------------------------------ */ |
|||
|
|||
.purchase { |
|||
width: 100%; |
|||
margin: 0; |
|||
padding: 35px 0; |
|||
-premailer-width: 100%; |
|||
-premailer-cellpadding: 0; |
|||
-premailer-cellspacing: 0; |
|||
} |
|||
|
|||
.purchase_content { |
|||
width: 100%; |
|||
margin: 0; |
|||
padding: 25px 0 0 0; |
|||
-premailer-width: 100%; |
|||
-premailer-cellpadding: 0; |
|||
-premailer-cellspacing: 0; |
|||
} |
|||
|
|||
.purchase_item { |
|||
padding: 10px 0; |
|||
color: #51545E; |
|||
font-size: 15px; |
|||
line-height: 18px; |
|||
} |
|||
|
|||
.purchase_heading { |
|||
padding-bottom: 8px; |
|||
border-bottom: 1px solid #EAEAEC; |
|||
} |
|||
|
|||
.purchase_heading p { |
|||
margin: 0; |
|||
color: #85878E; |
|||
font-size: 12px; |
|||
} |
|||
|
|||
.purchase_footer { |
|||
padding-top: 15px; |
|||
border-top: 1px solid #EAEAEC; |
|||
} |
|||
|
|||
.purchase_total { |
|||
margin: 0; |
|||
text-align: right; |
|||
font-weight: bold; |
|||
color: #333333; |
|||
} |
|||
|
|||
.purchase_total--label { |
|||
padding: 0 15px 0 0; |
|||
} |
|||
|
|||
body { |
|||
background-color: #FFF; |
|||
color: #333; |
|||
} |
|||
|
|||
p { |
|||
color: #333; |
|||
} |
|||
|
|||
.email-wrapper { |
|||
width: 100%; |
|||
margin: 0; |
|||
padding: 0; |
|||
-premailer-width: 100%; |
|||
-premailer-cellpadding: 0; |
|||
-premailer-cellspacing: 0; |
|||
} |
|||
|
|||
.email-content { |
|||
width: 100%; |
|||
margin: 0; |
|||
padding: 0; |
|||
-premailer-width: 100%; |
|||
-premailer-cellpadding: 0; |
|||
-premailer-cellspacing: 0; |
|||
} |
|||
/* Masthead ----------------------- */ |
|||
|
|||
.email-masthead { |
|||
padding: 25px 0; |
|||
text-align: center; |
|||
} |
|||
|
|||
.email-masthead_logo { |
|||
width: 94px; |
|||
} |
|||
|
|||
.email-masthead_name { |
|||
font-size: 16px; |
|||
font-weight: bold; |
|||
color: #A8AAAF; |
|||
text-decoration: none; |
|||
text-shadow: 0 1px 0 white; |
|||
} |
|||
/* Body ------------------------------ */ |
|||
|
|||
.email-body { |
|||
width: 100%; |
|||
margin: 0; |
|||
padding: 0; |
|||
-premailer-width: 100%; |
|||
-premailer-cellpadding: 0; |
|||
-premailer-cellspacing: 0; |
|||
} |
|||
|
|||
.email-body_inner { |
|||
width: 570px; |
|||
margin: 0 auto; |
|||
padding: 0; |
|||
-premailer-width: 570px; |
|||
-premailer-cellpadding: 0; |
|||
-premailer-cellspacing: 0; |
|||
} |
|||
|
|||
.email-footer { |
|||
width: 570px; |
|||
margin: 0 auto; |
|||
padding: 0; |
|||
-premailer-width: 570px; |
|||
-premailer-cellpadding: 0; |
|||
-premailer-cellspacing: 0; |
|||
text-align: center; |
|||
} |
|||
|
|||
.email-footer p { |
|||
color: #A8AAAF; |
|||
} |
|||
|
|||
.body-action { |
|||
width: 100%; |
|||
margin: 30px auto; |
|||
padding: 0; |
|||
-premailer-width: 100%; |
|||
-premailer-cellpadding: 0; |
|||
-premailer-cellspacing: 0; |
|||
text-align: center; |
|||
} |
|||
|
|||
.body-sub { |
|||
margin-top: 25px; |
|||
padding-top: 25px; |
|||
border-top: 1px solid #EAEAEC; |
|||
} |
|||
|
|||
.content-cell { |
|||
padding: 35px; |
|||
} |
|||
/*Media Queries ------------------------------ */ |
|||
|
|||
@media only screen and (max-width: 600px) { |
|||
.email-body_inner, |
|||
.email-footer { |
|||
width: 100% !important; |
|||
} |
|||
} |
|||
|
|||
@media (prefers-color-scheme: dark) { |
|||
body { |
|||
background-color: #333333 !important; |
|||
color: #FFF !important; |
|||
} |
|||
p, |
|||
ul, |
|||
ol, |
|||
blockquote, |
|||
h1, |
|||
h2, |
|||
h3, |
|||
span, |
|||
.purchase_item { |
|||
color: #FFF !important; |
|||
} |
|||
.attributes_content, |
|||
.discount { |
|||
background-color: #222 !important; |
|||
} |
|||
.email-masthead_name { |
|||
text-shadow: none !important; |
|||
} |
|||
} |
|||
|
|||
:root { |
|||
color-scheme: light dark; |
|||
supported-color-schemes: light dark; |
|||
} |
|||
@ -0,0 +1,62 @@ |
|||
<!-- Based on template: https://github.com/wildbit/postmark-templates/blob/master/templates/plain/welcome/content.html --> |
|||
<span class="preheader">Thanks for trying out [Product Name]. We’ve pulled together some information and resources to help you get started.</span> |
|||
<table class="email-wrapper" width="100%" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<tr> |
|||
<td align="center"> |
|||
<table class="email-content" width="100%" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<tr> |
|||
<td class="email-masthead"> |
|||
<a href="https://example.com" class="f-fallback email-masthead_name"> |
|||
{{ company }} |
|||
</a> |
|||
</td> |
|||
</tr> |
|||
<!-- Email Body --> |
|||
<tr> |
|||
<td class="email-body" width="570" cellpadding="0" cellspacing="0"> |
|||
<table class="email-body_inner" align="center" width="570" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<!-- Body content --> |
|||
<tr> |
|||
<td class="content-cell"> |
|||
<div class="f-fallback"> |
|||
<h1>Welcome, {{ email }}!</h1> |
|||
<p>Thanks for getting started with {{ company }}'s Budibase platform.</p> |
|||
<p>For reference, here's your login information:</p> |
|||
<table class="attributes" width="100%" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<tr> |
|||
<td class="attributes_content"> |
|||
<table width="100%" cellpadding="0" cellspacing="0" role="presentation"> |
|||
<tr> |
|||
<td class="attributes_item"> |
|||
<span class="f-fallback"> |
|||
<strong>Login Page:</strong> <a href="{{ loginUrl }}">{{ loginUrl }}</a> |
|||
</span> |
|||
</td> |
|||
</tr> |
|||
{{#if request}} |
|||
<tr> |
|||
<td class="attributes_item"> |
|||
<span class="f-fallback"> |
|||
<strong>Username:</strong> {{ request.loginUsername }} |
|||
</span> |
|||
</td> |
|||
</tr> |
|||
{{/if}} |
|||
</table> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
<p>If you have any questions get in contact with your {{ company }}'s Budibase platform administration team.</p> |
|||
<p>Thanks, |
|||
<br>The {{ company }} Team</p> |
|||
<p><strong>P.S.</strong> Need immediate help getting started? Check out our <a href="{{ docsUrl }}">help documentation</a>.</p> |
|||
</div> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
Loading…
Reference in new issue