Skip to content

Instantly share code, notes, and snippets.

@bennettblack
Last active April 25, 2021 16:32
Show Gist options
  • Save bennettblack/e81a8e9b5d53123767f4e3dde227e79c to your computer and use it in GitHub Desktop.
Save bennettblack/e81a8e9b5d53123767f4e3dde227e79c to your computer and use it in GitHub Desktop.
Laravel Raw Email (no view)
<?php
Mail::raw("This is the email's text. ", function($message){
$message->to('bennett@bscx.us')
->subject('Email via Callback');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment