Change word subscriber to member in composer email for new member
This commit is contained in:
parent
e0d5b579d9
commit
167e154de8
|
@ -154,11 +154,11 @@ export class Composer {
|
||||||
public static composeEmailToInformManagers(communityName: string, communityId: string, subscriberName: string): Email {
|
public static composeEmailToInformManagers(communityName: string, communityId: string, subscriberName: string): Email {
|
||||||
let email: Email = new 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 + "'>"
|
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"
|
+ "<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
|
+ this.signature
|
||||||
+ "<p style='font-size:" + this.noteFontSize + "'>"
|
+ "<p style='font-size:" + this.noteFontSize + "'>"
|
||||||
+ this.youAreManagerOfTheCommunity(communityId, communityName)
|
+ this.youAreManagerOfTheCommunity(communityId, communityName)
|
||||||
|
|
Loading…
Reference in New Issue