Skip to content

Commit 155dbb0

Browse files
authored
Merge pull request #33 from punktDeForks/AddReplyToEmailAddress
Add Reply-To Email address
2 parents 9614fd3 + bde2fde commit 155dbb0

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

Classes/Controller/RegistrationController.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,11 @@ public function registerAction(RegistrationFlow $registrationFlow)
7575
'activationLink' => $activationLink,
7676
'registrationFlow' => $registrationFlow
7777
],
78-
'sandstorm_usermanagement_sender_email'
78+
'sandstorm_usermanagement_sender_email',
79+
[], // cc
80+
[], // bcc
81+
[], // attachments
82+
'sandstorm_usermanagement_replyTo_email'
7983
);
8084

8185
$this->registrationFlowRepository->add($registrationFlow);

Classes/Controller/ResetPasswordController.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,11 @@ public function requestTokenAction(ResetPasswordFlow $resetPasswordFlow)
9494
'resetPasswordLink' => $resetPasswordLink,
9595
'resetPasswordFlow' => $resetPasswordFlow
9696
],
97-
'sandstorm_usermanagement_sender_email'
97+
'sandstorm_usermanagement_sender_email',
98+
[], // cc
99+
[], // bcc
100+
[], // attachments
101+
'sandstorm_usermanagement_replyTo_email'
98102
);
99103

100104
$this->resetPasswordFlowRepository->add($resetPasswordFlow);

0 commit comments

Comments
 (0)