Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 5 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
33 | public function handle() |
||
34 | { |
||
35 | $email = $this->argument('email'); |
||
36 | $nom = $this->argument('nom'); |
||
37 | Mail::send('Emails/welcome', [], function ($m) use ($email, $nom) { |
||
38 | $m->to($email, $nom) |
||
39 | ->subject('Welcome to the site '); |
||
40 | }); |
||
41 | |||
42 | $this->info('Finish: Send a email'); |
||
43 | } |
||
44 | } |
||
45 |