| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 16 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 3 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 28 | public function handle()  | 
            ||
| 29 |     { | 
            ||
| 30 |         $email = $this->argument('email'); | 
            ||
| 31 |         $nom = $this->argument('nom'); | 
            ||
| 32 |         Mail::send('Emails/welcome', [], function ($m) use ($email, $nom) { | 
            ||
| 33 |             $m->from('[email protected]', 'Julien Boyer') | 
            ||
| 34 | ->to($email, $nom)  | 
            ||
| 35 |                 ->subject('Welcome to the site '); | 
            ||
| 36 | });  | 
            ||
| 37 | |||
| 38 |         $this->info('Send a email'); | 
            ||
| 39 | |||
| 40 | |||
| 41 | |||
| 42 | |||
| 43 | }  | 
            ||
| 44 | }  | 
            ||
| 45 |