Change word subscriber to member in composer email for new member

This commit is contained in:
Konstantinos Triantafyllou 2022-09-26 17:24:39 +03:00
parent e0d5b579d9
commit 167e154de8
1 changed files with 3 additions and 3 deletions

View File

@ -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 = "<div style='font-size" + this.noteBodySize + "'>"
+ "<p>There is a new subscriber ("+subscriberName+") for \"" + communityName + "\" community. Click "
+ "<p>There is a new member ("+subscriberName+") for \"" + communityName + "\" community. Click "
+ "<a href='" + properties.adminPortalURL + "/" + communityId + "/users/member"
+ "'>here</a> to manage the subscribers list. </p>"
+ "'>here</a> to manage the members list. </p>"
+ this.signature
+ "<p style='font-size:" + this.noteFontSize + "'>"
+ this.youAreManagerOfTheCommunity(communityId, communityName)