diff --git a/server/api/helpers/notifications/create-one.js b/server/api/helpers/notifications/create-one.js index 5fc42d5..8603a08 100644 --- a/server/api/helpers/notifications/create-one.js +++ b/server/api/helpers/notifications/create-one.js @@ -39,7 +39,11 @@ async function sendEmailNotification({ notification, action }) { case Action.Types.COMMENT_CARD: email = { subject: `${actionUser.name} commented the card ${actionCard.name} on ${actionBoard.name}`, - html: `
${actionUser.name} commented the card ${actionCard.name} on ${actionBoard.name}
${action.data.text}
`, + html: + `${actionUser.name} commented the card ` + + `${actionCard.name} ` + + `on ${actionBoard.name}
` + + `${action.data.text}
`, }; break;