Skip to content

Commit

Permalink
[BUGFIX] use -configuration instead -settings (#800)
Browse files Browse the repository at this point in the history
Co-authored-by: Dijar Bytyci <d.bytyci@frappant.ch>
  • Loading branch information
frpuser and Dijar Bytyci authored Jun 7, 2024
1 parent 27352f7 commit f34bf71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Domain/Service/Mail/SendMailService.php
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ protected function addSenderHeader(MailMessage $message): MailMessage
if ($this->type === 'sender') {
$senderHeaderConfig= $this->configuration['sender.']['senderHeader.']??[];
} elseif ($this->type === 'receiver') {
$senderHeaderConfig = $this->settings['receiver.']['senderHeader.']??[];
$senderHeaderConfig = $this->configuration['receiver.']['senderHeader.']??[];
}

$email = ObjectUtility::getContentObject()->cObjGetSingle(
Expand Down

0 comments on commit f34bf71

Please sign in to comment.