Ejemplo n.º 1
0
 protected function sendNewUserSignupDeclinedMail()
 {
     $signupEmail = new Pap_Signup_SendEmailToUser();
     $signupEmail->sendNewUserSignupDeclinedMail($this, $this->getEmail());
 }
Ejemplo n.º 2
0
    protected function sendEmails(Pap_Contexts_Signup $context) {
        $signupEmail = new Pap_Signup_SendEmailToUser();
        $signupEmail->process($context);

        $notificationEmails = new Pap_Signup_SendNotificationEmails();
        $notificationEmails->process($context);
    }