Files
pawol.nu/lib/emails/payment-succeeded.js
T

110 lines
2.9 KiB
JavaScript
Raw Normal View History

2022-09-05 21:33:18 +04:00
const {template} = require('lodash')
2022-02-19 21:54:55 +04:00
const bodyTemplate = template(`
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Confirmation don <%= amount %> €. Merci pour votre soutien</title>
<style>
body {
background-color: #F5F6F7;
color: #234361;
font-family: "SF UI Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
margin: auto;
padding: 25px;
}
a {
text-decoration: none;
}
button {
background-color: #003b80;
border: none;
border-radius: 3px;
padding: 10px;
}
img {
max-height: 45px;
background-color: #F5F6F7;
}
.bal {
font-size: 25px;
font-weight: bold;
}
.container {
background-color: #ebeff3;
padding: 25px;
}
.forceWhiteLink button a {
color:#FFF!important;
}
.infos {
margin-top: 35px;
}
.title {
align-items: center;
border-bottom: 1px solid #E4E7EB;
justify-content: center;
margin-top: 35px;
min-height: 10em;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<div>
2026-05-12 16:43:39 +04:00
<img src="https://pawol.nu/logo-72x72.png" alt="Logo OKI">
2022-02-19 21:54:55 +04:00
</div>
<div class="title">
<h2 style="margin:0; mso-line-height-rule:exactly;">Merci !</h2><br>
2023-03-20 20:12:20 +04:00
<h3 style="margin:0; mso-line-height-rule:exactly;">Votre soutien à OKI est important et nous vous en sommes très reconnaissant ❤️</h3>
2022-02-19 21:54:55 +04:00
</div>
<div class="container">
<section>
<h4>Une aide indispensable</h4>
<p>
2023-03-20 20:12:20 +04:00
En effet, ce sont les dons qui nous permettent de maintenir tous les services liés à OKI.
2022-02-19 21:54:55 +04:00
</p>
<p>
Toute contribution, aussi modeste soit-elle, nous permet daugmenter nos capacités.<br />
</p>
<p>Pour rappel, voici la liste des services que nous hébergeons&nbsp;:</p>
<ul>
<li><span class="forceWhiteLink"><button><a href="https://gade.o-k-i.net" target="blank">Gadé</a></button></span> 📺</li>
<li><span class="forceWhiteLink"><button><a href="https://mizik.o-k-i.net" target="blank">Mizik</a></button></span> 🎶</li>
</ul>
</section>
</div>
</body>
<footer>
<p>Pour toute question, nhésitez pas à nous contacter en répondant à ce courriel.</p>
<p>Merci infiniment pour votre soutien.</p>
2026-05-12 18:42:23 +04:00
<span><i><span class="forceWhiteLink"><button><a href="https://pawol.nu" target="blank">PAWÒL-NU</a></button></span></i></span>
2022-02-19 21:54:55 +04:00
</footer>
</html>
`)
function formatEmail(amount) {
return {
subject: `Confirmation don ${amount} €. Merci pour votre soutien`,
html: bodyTemplate({amount})
}
}
module.exports = formatEmail