Skip to content
Snippets Groups Projects

Admins can reply to the user by answering the email

Merged Sébastien DA ROCHA requested to merge feat/9579_admin_reply_to_user_by_email into development
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
@@ -543,6 +543,7 @@ export class LegacyService {
await Promise.all([
this.sendEmail({
html: adminEmail,
reply-to : [token.email],
to: [this.conf.userSupportMailbox],
subject: 'Demande d’accès aux données',
}),
@@ -643,6 +644,7 @@ export class LegacyService {
await Promise.all([
this.sendEmail({
html: adminEmail,
reply-to : [token.email],
to: [this.conf.userSupportMailbox],
subject: 'Demande de renouvellement d’accès aux données',
}),
@@ -747,6 +749,7 @@ export class LegacyService {
await Promise.all([
this.sendEmail({
html: adminEmail,
reply-to : [token.email],
to: [this.conf.userSupportMailbox],
subject: 'Demande de suppression d’accès aux données',
}),
@@ -834,4 +837,4 @@ export class LegacyService {
handleError(error, new InternalServerErrorException('Couldn\'t send email.'));
}
}
}
\ No newline at end of file
}
Loading