From 167e154de8d7fad10a1c9f48e5f35f997a9133e0 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Mon, 26 Sep 2022 17:24:39 +0300 Subject: [PATCH] Change word subscriber to member in composer email for new member --- utils/email/composer.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/email/composer.ts b/utils/email/composer.ts index 20f1ca97..7176f299 100644 --- a/utils/email/composer.ts +++ b/utils/email/composer.ts @@ -154,11 +154,11 @@ export class Composer { public static composeEmailToInformManagers(communityName: string, communityId: string, subscriberName: string): Email { let email: Email = new Email(); - email.subject = this.subjectPrefix + communityName + ": New subscriber notification"; + email.subject = this.subjectPrefix + communityName + ": New Member notification"; email.body = "
" - + "

There is a new subscriber ("+subscriberName+") for \"" + communityName + "\" community. Click " + + "

There is a new member ("+subscriberName+") for \"" + communityName + "\" community. Click " + "here to manage the subscribers list.

" + + "'>here to manage the members list.

" + this.signature + "

" + this.youAreManagerOfTheCommunity(communityId, communityName)