Elcodi\Store\UserBundle\EventListener\SendRegistrationEmailEventListener::sendCustomerRegistrationEmail PHP Method

sendCustomerRegistrationEmail() public method

Send email
public sendCustomerRegistrationEmail ( Elcodi\Component\User\Event\CustomerRegisterEvent $event )
$event Elcodi\Component\User\Event\CustomerRegisterEvent Event
    public function sendCustomerRegistrationEmail(CustomerRegisterEvent $event)
    {
        $customer = $event->getCustomer();
        $this->sendEmail('customer_registration', ['customer' => $customer], $customer->getEmail());
    }
SendRegistrationEmailEventListener