-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
62 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -453,7 +453,9 @@ export default { | |
}, | ||
meeting_email: { | ||
meeting_request_to_student: { | ||
subject: "meeting_request_to_student", | ||
subject: ( | ||
companyName: string | ||
) => `Meeting Request from ${companyName}`, | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
|
@@ -467,23 +469,12 @@ export default { | |
<p>The D-Dagen project group</p> | ||
`, | ||
}, | ||
company_meeting_created: { | ||
subject: "company_meeting_created", | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
companyName: string, | ||
)=>` | ||
<p>Hi ${companyName}!</p> | ||
<p>We are pleased to confirm that ${firstName} ${lastName} has accepted your meeting request</p> | ||
<p>If any of the information above is incorrect or if you have any other questions, | ||
do not hesitate to contact our sales team at [email protected].</p> | ||
<p>Best regards,</p> | ||
<p>The D-Dagen project group</p> | ||
`, | ||
}, | ||
meeting_deleted_by_student: { | ||
subject: "meeting_deleted_by_student", | ||
subject: ( | ||
firstName: string, | ||
lastName: string | ||
)=> | ||
`Meeting Cancelled by ${firstName} ${lastName}`, | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
|
@@ -497,7 +488,9 @@ export default { | |
`, | ||
}, | ||
meeting_deleted_by_company: { | ||
subject: "meeting_deleted_by_company", | ||
subject: ( | ||
companyName: string | ||
)=>`Meeting Cancelled by ${companyName}`, | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
|
@@ -512,7 +505,11 @@ export default { | |
`, | ||
}, | ||
meeting_completed_to_company: { | ||
subject: "meeting_completed_to_company", | ||
subject: ( | ||
firstName: string, | ||
lastName: string, | ||
companyName: string | ||
)=> `Meeting Confirmed – ${companyName} and ${firstName} ${lastName}`, | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
|
@@ -532,7 +529,11 @@ export default { | |
`, | ||
}, | ||
meeting_completed_to_student: { | ||
subject: "meeting_completed_to_student", | ||
subject: ( | ||
firstName: string, | ||
lastName: string, | ||
companyName: string | ||
)=> `Meeting Confirmed – ${companyName} and ${firstName} ${lastName}`, | ||
body: ( | ||
firstName: string, | ||
lastName: string, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters