Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class customMail extends Mailable |
||
11 | { |
||
12 | use Queueable, SerializesModels; |
||
13 | |||
14 | public $subject, $body; |
||
15 | /** |
||
16 | * Create a new message instance. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | public function __construct($subject, $body) |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Build the message. |
||
28 | * |
||
29 | * @return $this |
||
30 | */ |
||
31 | public function build() |
||
40 |