welcomeEmail.js 768 B

12345678910111213141516171819
  1. module.exports = (data)=>{
  2. return `
  3. <div id="welcomeEmail">
  4. <header style="width:100%;height:75px;background:rgb(0,27,45);">
  5. <img src="https://i.postimg.cc/dQky3vPX/logo.png" alt="Subline Logo" style="height:50px;padding:12px 12px;float:left;">
  6. <h3 style="color:rgb(255,99,107);font-size:30px;margin:15px 0 0 0;float:left;">THE SUBLINE</h3>
  7. </header>
  8. <h1 style="text-align:center;">Welcome to The Subline ${data.name}!</h1>
  9. <p>We are glad to have you aboard and look forward to helping your business improve efficiency and cut costs.</p>
  10. <p>Please follow the link below to verify your email address:</p>
  11. <p>${data.link}</p>
  12. </div>
  13. `;
  14. }