welcomeEmail.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. module.exports = (data)=>{
  2. return `
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta charset="utf-8">
  7. <meta content="width=device-width, initial-scale=1" name="viewport"/>
  8. <title>Welcome to The Subline</title>
  9. <link href="https://fonts.googleapis.com/css?family=Saira&display=swap" rel="stylesheet">
  10. <style>
  11. *{margin:0;padding:0;font-family:"Saira",sans-serif;}
  12. .header{
  13. display: flex;
  14. justify-content: flex-start;
  15. align-items: center;
  16. height: 75px;
  17. width: 100%;
  18. background: rgb(0, 27, 45);
  19. color: rgb(255, 99, 107);
  20. }
  21. .header img{
  22. max-height: 80%;
  23. }
  24. .message{
  25. width: 90%;
  26. margin: auto;
  27. text-align: center;
  28. padding: 100px 0;
  29. font-size: 30px;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div class="header">
  35. <img src="localhost:8080/logo" alt="The Subline">
  36. <h1>THE SUBLINE</h1>
  37. </div>
  38. <p class="message">Thank you for signing up for The Subline ${data.name}. We look forward to helping your business to reduce waste. To get started, visit our <a href="thesubline.com/help">help page</a> for more information.</p>
  39. </body>
  40. </html>
  41. `;
  42. }