Elcodi\Store\UserBundle\EventListener\SendPasswordRecoverEmailEventListener::sendPasswordRecoverEmail PHP Method

sendPasswordRecoverEmail() public method

Send email
public sendPasswordRecoverEmail ( Elcodi\Component\User\Event\PasswordRecoverEvent $event )
$event Elcodi\Component\User\Event\PasswordRecoverEvent Event
    public function sendPasswordRecoverEmail(PasswordRecoverEvent $event)
    {
        $customer = $event->getUser();
        $this->sendEmail('password_recover', ['customer' => $customer], $customer->getEmail());
    }
SendPasswordRecoverEmailEventListener