Skip to content

Instantly share code, notes, and snippets.

@carlosocarvalho
Created September 13, 2016 14:18
Show Gist options
  • Save carlosocarvalho/e7a65f0a11cb2847fab9141b4e5d7e5f to your computer and use it in GitHub Desktop.
Save carlosocarvalho/e7a65f0a11cb2847fab9141b4e5d7e5f to your computer and use it in GitHub Desktop.
<?php
namespace Events;
class RegisterUserMailerEvent {
public function handler($data){
//script para enviar e-mail.
if( mailer()->send($data))
return true;
user
return false;
}
}
//** Events\RegisterUserMailerEvent.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment