Skip to content

Commit

Permalink
Refactored configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaplet committed Apr 14, 2019
1 parent d24b54b commit f372aca
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Manager/UserManager.php
Expand Up @@ -185,6 +185,11 @@ protected function savePasswordAndSendMail(User $user, string $configName) : voi
->addTo($user->getEmail())
->setHtmlBody($html);

foreach ($pr['sender']['bcc'] as $bcc)
{
$message->addBcc($bcc);
}

$smtp = new SmtpMailer($pr['config']);

$this->getConnection()->beginTransaction();
Expand Down

0 comments on commit f372aca

Please sign in to comment.