Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dvesh3 authored and actions-user committed Dec 9, 2021
1 parent eaef8fd commit a5e13be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Maintenance/Tasks/LogMailMaintenanceTask.php
Expand Up @@ -87,8 +87,8 @@ public function execute()
$mail = new \Pimcore\Mail();
$mail->setIgnoreDebugMode(true);
$mail->html($html);
foreach ($receivers as $receiver){
$mail->addTo(new Address($receiver, $receiver));
foreach ($receivers as $receiver) {
$mail->addTo(new Address($receiver, $receiver));
}
$mail->setSubject('Error Log '.\Pimcore\Tool::getHostUrl());
$mail->send();
Expand Down

0 comments on commit a5e13be

Please sign in to comment.