Files
pawol.nu/lib/emails/payment-succeeded.js
T
2026-05-12 16:43:39 +04:00

110 lines
2.9 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const {template} = require('lodash')
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>
<img src="https://pawol.nu/logo-72x72.png" alt="Logo OKI">
</div>
<div class="title">
<h2 style="margin:0; mso-line-height-rule:exactly;">Merci !</h2><br>
<h3 style="margin:0; mso-line-height-rule:exactly;">Votre soutien à OKI est important et nous vous en sommes très reconnaissant ❤️</h3>
</div>
<div class="container">
<section>
<h4>Une aide indispensable</h4>
<p>
En effet, ce sont les dons qui nous permettent de maintenir tous les services liés à OKI.
</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>
<span><i><span class="forceWhiteLink"><button><a href="https://pawol.nu" target="blank">OKI - ORGANISATION KA INTERNATIONALE</a></button></span></i></span>
</footer>
</html>
`)
function formatEmail(amount) {
return {
subject: `Confirmation don ${amount} €. Merci pour votre soutien`,
html: bodyTemplate({amount})
}
}
module.exports = formatEmail