Skip to content

Instantly share code, notes, and snippets.

@ishukshin
Last active September 21, 2016 18:42
Show Gist options
  • Save ishukshin/7874fa0a88913b5a08dc49fae4dc6c56 to your computer and use it in GitHub Desktop.
Save ishukshin/7874fa0a88913b5a08dc49fae4dc6c56 to your computer and use it in GitHub Desktop.
<?php
use Mail;
// views/emails/reset.blade.php шаблон
// user,info передаются в шаблон
Mail::send('emails.reset', ['user' => $user, 'info' => $info], function ($m) use ($user) {
$m->from(env('MAIL_FROM'));
$m->to($user->email)->subject('Запрос в службу поддержки');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment