diff --git a/src/legacy/legacy.service.ts b/src/legacy/legacy.service.ts index 7412c41976ae26c89ba816cb90e26122abf4cb1e..58b208ccf787979de6faf668c8c6df483af7e3b1 100644 --- a/src/legacy/legacy.service.ts +++ b/src/legacy/legacy.service.ts @@ -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 +}