Total Complexity | 2 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class NewAccountCreatedEmail extends Mailable |
||
10 | { |
||
11 | use Queueable, SerializesModels; |
||
|
|||
12 | |||
13 | /** |
||
14 | * @var \App\Models\User |
||
15 | */ |
||
16 | private $user; |
||
17 | |||
18 | /** |
||
19 | * @var mixed |
||
20 | */ |
||
21 | private $siteEmail; |
||
22 | |||
23 | /** |
||
24 | * @var mixed |
||
25 | */ |
||
26 | private $siteTitle; |
||
27 | |||
28 | /** |
||
29 | * Create a new message instance. |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | public function __construct($user) |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * Build the message. |
||
42 | */ |
||
43 | public function build(): static |
||
48 |