diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-04-28 02:13:30 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-04-28 02:13:30 +0000 |
| commit | ef4c533ebacc2cdc97e518f30e9a9350004fcdfb (patch) | |
| tree | 345251a3ed0f4429716fa5edaa31024d8f4cb560 /lib/mail/layouts | |
| parent | 9ceed79cf32c896f8a998399bf1b296506b2cd4a (diff) | |
~20250428 작업사항
Diffstat (limited to 'lib/mail/layouts')
| -rw-r--r-- | lib/mail/layouts/base.hbs | 22 |
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> |
