Changed e-mail address for registration info mails

TODO: Make it a parameter maybe?
This commit is contained in:
Polonkai Gergely 2012-07-07 22:18:14 +02:00
parent 13d03100e4
commit 6cfae864a8
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class DefaultController extends Controller
$message = \Swift_Message::newInstance() $message = \Swift_Message::newInstance()
->setSubject('Új jelentkező') ->setSubject('Új jelentkező')
->setFrom('info@blueroses.hu') ->setFrom('info@blueroses.hu')
->setTo('nauryl@blueroses.hu') ->setTo('info@blueroses.hu')
->setBody($this->renderView('KekRozsakSecurityBundle:Email:new_registration.txt.twig', array('user' => $user))); ->setBody($this->renderView('KekRozsakSecurityBundle:Email:new_registration.txt.twig', array('user' => $user)));
$this->get('mailer')->send($message); $this->get('mailer')->send($message);