diff --git a/ghost/members-importer/lib/email-template.js b/ghost/members-importer/lib/email-template.js index b17042eb10..a6224f530a 100644 --- a/ghost/members-importer/lib/email-template.js +++ b/ghost/members-importer/lib/email-template.js @@ -123,7 +123,7 @@ module.exports = ({result, siteUrl, membersUrl, emailRecipient}) => `
Your member import is complete
+${iff(result.imported > 0, `Your member import is complete`, `Your member import was unsuccessful`)}
- ${iff(result.imported === 0, `No members were added.`, `${result.errors.length} ${iff(result.errors.length === 1, `member was`, `members were`)} skipped due to errors.`)} We attached a validated CSV file in this email with the complete list of errors so that you can fix them and re-upload the CSV to complete the import.
+ ${iff(result.imported === 0, `No members were added.`, `${result.errors.length} ${iff(result.errors.length === 1, `member was`, `members were`)} skipped due to errors.`)} There's a validated CSV file attached to this email with the list of errors so that you can fix them and re-upload the CSV to complete the import.