Laravel Mail Export is a simple mailable trait and interface to export emails to a storage disk once sent. This package works by exporting any mail sent as a .eml file to a filesystem disk, which is useful for archival purposes.
Here's an example from the readme of how to use this package, which includes implementing the ShouldExport interface and use the Exportable trait:
namespace App\Mail; use Illuminate\Mail\Mailable;use PodPoint\MailExport\Concerns\Exportable;use PodPoint\MailExport\Contracts\ShouldExport; class OrderShipped extends Mailable implements ShouldExport{ use Exportable; // ...}
You can also configure the mailable disk, path, and filename via a class property, or more flexibly, using methods:
public function exportDisk(): string{ return 'some_disk';} public function exportPath(): string{ return 'some_path';} public function exportFilename(): string{ return time() . '_some_filename';}
You can learn more about this package, get full installation instructions, and view the source code on GitHub.