Skip to content

Instantly share code, notes, and snippets.

@jadulled
Forked from petehouston/mail.php
Last active August 29, 2015 14:23
Show Gist options
  • Save jadulled/9ac00544a80a14d72a9c to your computer and use it in GitHub Desktop.
Save jadulled/9ac00544a80a14d72a9c to your computer and use it in GitHub Desktop.
/**
* The mailer contract
*
* @var Illuminate\Contracts\Mail\Mailer
*/
protected $mail;
public function sendUserRegistered($user)
{
$view = 'user_registered';
$this->mail->send($view, $user , function($message) use ($user)
{
$message->to($user->email, $user->name)->subject('Welcome to the Brotherhood!');
});
}
<p>Welcome, {{ $user->name }}</p>
<p>Hope you like the Brotherhood in Laravel. </p>
<p>Best Regards,</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment