Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save novasky-zz/06026742e9c486124910b98c8a7e21b9 to your computer and use it in GitHub Desktop.
Save novasky-zz/06026742e9c486124910b98c8a7e21b9 to your computer and use it in GitHub Desktop.
Laravel: Attaching files to emails
Mail::send('emails.whitepaper', [], function ($m) {
$m->to('email@domain.com');
$m->subject('Your whitepaper download');
$m->attach(storage_path('pdfs/whitepaper.pdf'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment