diff --git a/utils/email/composer.ts b/utils/email/composer.ts index b27bf7a7..a7b6e607 100644 --- a/utils/email/composer.ts +++ b/utils/email/composer.ts @@ -68,14 +68,14 @@ export class Composer { return email; } - public static composeEmailToInformManagers(communityName: string, communityId: string, managers: any): Email { + public static composeEmailToInformManagers(communityName: string, communityId: string, managers: any, subscriberMail: any): Email { let email: Email = new Email(); email.subject = this.subjectPrefix + communityName + ": New subscriber notification"; email.body = "
" - + "

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

There is a new subscriber ("+subscriberMail+") for \"" + communityName + "\" community. Click " + "here to manage the subscibers list.

" + + communityId + "'>here to manage the subscribers list.

" + this.signature + "

" + this.youAreManagerOfTheCommunity(communityId, communityName)