diff --git a/src/app/pages/community/community-edit-form/community-edit-form.component.ts b/src/app/pages/community/community-edit-form/community-edit-form.component.ts index 5f4f39b..98d8700 100644 --- a/src/app/pages/community/community-edit-form/community-edit-form.component.ts +++ b/src/app/pages/community/community-edit-form/community-edit-form.component.ts @@ -48,6 +48,8 @@ export class CommunityEditFormComponent implements OnInit{ public emailToInform: Email; + public note: string = ''; + public properties:EnvProperties = null; constructor (private route: ActivatedRoute, @@ -241,7 +243,7 @@ export class CommunityEditFormComponent implements OnInit{ // TODO find the right place to write it private composeEmailForNewManager(communityName: string, newCommunityManagers: any): Email { this.email.subject = "[OpenAIRE-Connect] " + communityName + ": Managers list notification"; - this.email.body = "

There are updates in the managers list for" + communityName + "community.
" + this.email.body = "

There are updates in the managers list for " + communityName + " community.
" + "The list of managers is: " + newCommunityManagers + "



" + "OpenAIRE team
"+ "www.openaire.eu"; this.email.recipients = newCommunityManagers;