---
title: "Creare una gestione Email"
id: "425"
type: "shorts"
slug: "creare-una-gestione-email"
published_at: "2026-07-06T09:20:23+00:00"
modified_at: "2026-07-06T09:27:54+00:00"
url: "https://pierluigipapeschi.com/shorts/creare-una-gestione-email/"
markdown_url: "https://pierluigipapeschi.com/shorts/creare-una-gestione-email.md"
excerpt: "Per creare correttamente il file che gestirà l’invio di un certo tipo di email, eseguiamo questo comando: php artisan make:mail OrderShipped --markdown=emails.order-shipped La classe corrispondente viene creata dentro app/Mail e qui possiamo definire il template blade usato che andrà caricato..."
taxonomy_short_cat:
  - "Laravel"
---

Per creare correttamente il file che gestirà l’invio di un certo tipo di email, eseguiamo questo comando:

```
php artisan make:mail OrderShipped --markdown=emails.order-shipped
```

La classe corrispondente viene creata dentro app/Mail e qui possiamo definire il template blade usato che andrà caricato nella cartella resources/views.
