2017-06-26 16:48:28 +00:00
|
|
|
export default ({
|
|
|
|
domain,
|
|
|
|
headingText,
|
|
|
|
greetingText,
|
|
|
|
messageText,
|
|
|
|
link,
|
|
|
|
buttonText,
|
|
|
|
directLinkText,
|
|
|
|
noteText,
|
2018-05-14 18:53:21 +00:00
|
|
|
meta
|
2017-06-26 16:48:28 +00:00
|
|
|
}) => (
|
2018-05-05 00:22:39 +00:00
|
|
|
`
|
2017-06-26 16:48:28 +00:00
|
|
|
<mjml>
|
2018-05-14 18:53:21 +00:00
|
|
|
<mj-head>
|
|
|
|
<mj-raw>
|
|
|
|
<meta name="keywords" content="${meta.keywords}" />
|
|
|
|
<meta name="description" content="${meta.description}" />
|
|
|
|
</mj-raw>
|
|
|
|
</mj-head>
|
2017-06-26 16:48:28 +00:00
|
|
|
<mj-body>
|
|
|
|
<mj-container>
|
|
|
|
<mj-section>
|
|
|
|
<mj-column>
|
|
|
|
<mj-image width="192" src="${domain}/images/p5js-square-logo.png" alt="p5.js" />
|
|
|
|
<mj-divider border-color="#ed225d"></mj-divider>
|
|
|
|
</mj-column>
|
|
|
|
</mj-section>
|
|
|
|
|
|
|
|
<mj-section>
|
|
|
|
<mj-column>
|
|
|
|
<mj-text font-size="20px" color="#333333" font-family="sans-serif">
|
|
|
|
${headingText}
|
|
|
|
</mj-text>
|
|
|
|
</mj-column>
|
|
|
|
</mj-section>
|
|
|
|
|
|
|
|
<mj-section>
|
|
|
|
<mj-column>
|
|
|
|
<mj-text color="#333333">
|
|
|
|
${greetingText}
|
|
|
|
</mj-text>
|
|
|
|
<mj-text color="#333333">
|
|
|
|
${messageText}
|
|
|
|
</mj-text>
|
|
|
|
<mj-button background-color="#ed225d" href="${link}">
|
|
|
|
${buttonText}
|
|
|
|
</mj-button>
|
|
|
|
</mj-column>
|
|
|
|
</mj-section>
|
|
|
|
|
|
|
|
<mj-section>
|
|
|
|
<mj-column>
|
|
|
|
<mj-text color="#333333">
|
|
|
|
${directLinkText}
|
|
|
|
</mj-text>
|
|
|
|
<mj-text align="center" color="#333333"><a href="${link}">${link}</a></mj-text>
|
|
|
|
<mj-text color="#333333">
|
|
|
|
${noteText}
|
|
|
|
</mj-text>
|
|
|
|
</mj-column>
|
|
|
|
</mj-section>
|
|
|
|
</mj-container>
|
|
|
|
</mj-body>
|
|
|
|
</mjml>
|
|
|
|
`
|
|
|
|
);
|