From 1e8bac111fed6658cc947f7b5c67c74990355afb Mon Sep 17 00:00:00 2001 From: Fabien O'Carroll Date: Thu, 10 Oct 2019 20:19:31 +0700 Subject: [PATCH] Pass email to getHTML and getSubject no-issue This will allow email templates to include the recipient --- ghost/magic-link/index.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/ghost/magic-link/index.js b/ghost/magic-link/index.js index 1dd8cfc164..f0ec42deec 100644 --- a/ghost/magic-link/index.js +++ b/ghost/magic-link/index.js @@ -15,14 +15,15 @@ module.exports = MagicLink; * * @param {URL} url - The url which will trigger sign in flow * @param {string} type - The type of email to send e.g. signin, signup + * @param {string} email - The recipient of the email to send * @returns {string} text - The text content of an email to send */ -function defaultGetText(url, type) { +function defaultGetText(url, type, email) { let msg = 'sign in'; if (type === 'signup') { msg = 'confirm your email address'; } - return `Click here to ${msg} ${url}`; + return `Click here to ${msg} ${url}. This msg was sent to ${email}`; } /** @@ -30,14 +31,15 @@ function defaultGetText(url, type) { * * @param {URL} url - The url which will trigger sign in flow * @param {string} type - The type of email to send e.g. signin, signup + * @param {string} email - The recipient of the email to send * @returns {string} HTML - The HTML content of an email to send */ -function defaultGetHTML(url, type) { +function defaultGetHTML(url, type, email) { let msg = 'sign in'; if (type === 'signup') { msg = 'confirm your email address'; } - return `Click here to ${msg}`; + return `Click here to ${msg} This msg was sent to ${email}`; } /** @@ -90,8 +92,8 @@ MagicLink.prototype.sendMagicLink = async function sendMagicLink(options) { const info = await this.transporter.sendMail({ to: options.email, - text: this.getText(url, type), - html: this.getHTML(url, type) + text: this.getText(url, type, options.email), + html: this.getHTML(url, type, options.email) }); return {token, info};