1 | <?php |
||
2 | |||
3 | namespace App\Mail; |
||
4 | |||
5 | use Illuminate\Bus\Queueable; |
||
6 | use Illuminate\Mail\Mailable; |
||
7 | use Illuminate\Queue\SerializesModels; |
||
8 | |||
9 | class PasswordUpdated extends Mailable |
||
10 | { |
||
11 | use Queueable, SerializesModels; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
12 | |||
13 | /** |
||
14 | * Create a new message instance. |
||
15 | * |
||
16 | * @return void |
||
17 | */ |
||
18 | public function __construct() |
||
19 | { |
||
20 | // |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Build the message. |
||
25 | * |
||
26 | * @return $this |
||
27 | */ |
||
28 | public function build() |
||
29 | { |
||
30 | return $this->markdown('emails.password.updated.subject') |
||
31 | ->subject('emails.password.updated.subject'); |
||
32 | } |
||
33 | } |
||
34 |