diff --git a/src/email/templates.js b/src/email/templates.js index db9f8b0..06fb1b0 100644 --- a/src/email/templates.js +++ b/src/email/templates.js @@ -3,11 +3,11 @@ exports.verifyKey = ({name, baseUrl, keyId, nonce}) => ({ subject: `Verify Your Key`, text: `Hello ${name},\n\nplease click here to verify your key:\n\n${baseUrl}/api/v1/key?op=verify&keyId=${keyId}&nonce=${nonce}`, - html: `

Hello ${name},

please click here to verify your key.

` + html: `

Hello ${name},

please click here to verify your key.

` }); exports.verifyRemove = ({name, baseUrl, keyId, nonce}) => ({ subject: `Verify Key Removal`, text: `Hello ${name},\n\nplease click here to verify the removal of your key:\n\n${baseUrl}/api/v1/key?op=verifyRemove&keyId=${keyId}&nonce=${nonce}`, - html: `

Hello ${name},

please click here to verify the removal of your key.

` + html: `

Hello ${name},

please click here to verify the removal of your key.

` });