diff --git a/utils/email/composer.ts b/utils/email/composer.ts index 44b0ee43..ca76c50b 100644 --- a/utils/email/composer.ts +++ b/utils/email/composer.ts @@ -103,4 +103,13 @@ export class Composer { return formattedEmail; } + public static initializeInvitationEmailsBody(communityId: string, communityTitle: string): string { + return '
You are invited to subscribe to '
+ + communityTitle + ' dashboard.
'
+ + 'The purpose of this dashboard is to gather, link & monitor the research results related to your community.
The community dashboard is part of the OpenAIRE-Connect ' + + 'project and currently is in BETA version.' + + '
'; + } + }