summaryrefslogtreecommitdiff
path: root/lib/mail/layouts/base.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mail/layouts/base.hbs')
-rw-r--r--lib/mail/layouts/base.hbs22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/mail/layouts/base.hbs b/lib/mail/layouts/base.hbs
new file mode 100644
index 00000000..2e18f035
--- /dev/null
+++ b/lib/mail/layouts/base.hbs
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <title>{{subject}}</title>
+ </head>
+ <body style="margin:0; padding:20px; background-color:#f5f5f5; font-family:Arial, sans-serif; color:#111827;">
+ <table width="100%" cellpadding="0" cellspacing="0" border="0" align="center">
+ <tr>
+ <td align="center">
+ <table width="600" cellpadding="0" cellspacing="0" border="0" style="background-color:#ffffff; border:1px solid #e5e7eb; border-radius:6px; padding:24px;">
+ <tr>
+ <td>
+ {{{body}}}
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </table>
+ </body>
+</html>