| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function handle(\Illuminate\Contracts\Mail\Mailer $mailer) |
||
| 14 | { |
||
| 15 | $this->info("Sending a test mail to HELO."); |
||
| 16 | |||
| 17 | $mailer->send((new TestMail())->to('[email protected]')); |
||
| 18 | |||
| 19 | $this->info("Check in HELO if it arrived!"); |
||
| 20 | } |
||
| 21 | } |
||
| 22 |