Agrego archivos iniciales
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Mail;
|
||||
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Mail\Mailable;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
class ResetPasswordMail extends Mailable
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
|
||||
public $user;
|
||||
public $token;
|
||||
|
||||
public function __construct($user, $token)
|
||||
{
|
||||
$this->user = $user;
|
||||
$this->token = $token;
|
||||
}
|
||||
|
||||
public function build()
|
||||
{
|
||||
return $this->subject('Recuperar contraseña - OnAPB')
|
||||
->view('emails.reset_password');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user