Fix Subject

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-connect-portal/trunk@53926 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
sofia.baltzi 2018-11-22 15:19:09 +00:00
parent a02587529f
commit 87be3ca01c
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ export class InviteComponent implements OnInit {
// TODO move the initialisation
this.body = {/*salutation: "Dear Sir/Madame,",*/ fromMessage: ", on behalf of ", fromName: "", paragraphs: this.defaultBody, /*closing: "Kind regards,",*/ signature: "OpenAIRE team", ps: ""};
this.email = {body: "", subject: "", recipients: []};
this.email = {body: "", subject: "[OpenAIRE-Connect] " + community.title, recipients: []};
this.recipients = "";
this.showLoading = false;
@ -157,7 +157,7 @@ export class InviteComponent implements OnInit {
}
public composeEmail() {
this.email.subject = "[OpenAIRE-Connect] Community_name";
// this.email.subject = "[OpenAIRE-Connect] Community_name";
this.email.body = this.formatEmailBody();
}