diff options
Diffstat (limited to 'helpers/email.js')
-rw-r--r-- | helpers/email.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/helpers/email.js b/helpers/email.js new file mode 100644 index 0000000..d79426c --- /dev/null +++ b/helpers/email.js @@ -0,0 +1,4 @@ +export const subject = 'Verification of your new Notes App account' +export const text = key => `Thank you for creating an account in Notes App.\nWe are sending you the verification code:\n\n${key}\n\nTo finish verification log in and paste this code.` +export const html = key => `<p>Thank you for creating an account in Notes App.<br/>We are sending you the verification code:</p><p style="font-size: 150%;padding: 1em;border: 1px solid black">${key}</p><p>To finish verification log in and paste this code.</p></br>` + |