Skip to content

Commit

Permalink
corrected recipient of payment reminder
Browse files Browse the repository at this point in the history
  • Loading branch information
BigAndini committed Oct 23, 2016
1 parent b19b2a7 commit 5e2fdd7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions module/Admin/src/Admin/Controller/CronController.php
Original file line number Diff line number Diff line change
Expand Up @@ -461,11 +461,11 @@ public function sendPaymentReminderAction() {
->get('config');
$emailService->setFrom($config['ERS']['info_mail']);

#$buyer = $order->getBuyer();
#$emailService->addTo($buyer);
$user = new Entity\User();
$buyer = $order->getBuyer();
$emailService->addTo($buyer);
/*$user = new Entity\User();
$user->setEmail('[email protected]');
$emailService->addTo($user);
$emailService->addTo($user);*/

$bcc = new Entity\User();
$bcc->setEmail($config['ERS']['info_mail']);
Expand Down

0 comments on commit 5e2fdd7

Please sign in to comment.