Last active
September 21, 2016 18:42
-
-
Save ishukshin/7874fa0a88913b5a08dc49fae4dc6c56 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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