1 | <?php |
||
2 | |||
3 | namespace Pratiksh\Adminetic\Mail; |
||
4 | |||
5 | use Illuminate\Bus\Queueable; |
||
6 | use Illuminate\Mail\Mailable; |
||
7 | use Illuminate\Queue\SerializesModels; |
||
8 | |||
9 | class AuthenticationDetailMail extends Mailable |
||
10 | { |
||
11 | use Queueable, SerializesModels; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
12 | |||
13 | public $email; |
||
14 | |||
15 | public $name; |
||
16 | |||
17 | public $password; |
||
18 | |||
19 | /** |
||
20 | * Create a new message instance. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | public function __construct($email, $name, $password) |
||
25 | { |
||
26 | $this->email = $email; |
||
27 | $this->name = $name; |
||
28 | $this->password = $password; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Build the message. |
||
33 | * |
||
34 | * @return $this |
||
35 | */ |
||
36 | public function build() |
||
37 | { |
||
38 | return $this->markdown('adminetic::admin.layouts.modules.email.authentication_detail_mail'); |
||
39 | } |
||
40 | } |
||
41 |