Skip to content

Instantly share code, notes, and snippets.

@tbergeron
Created January 20, 2015 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tbergeron/4ce4b8bbb118f1330245 to your computer and use it in GitHub Desktop.
Save tbergeron/4ce4b8bbb118f1330245 to your computer and use it in GitHub Desktop.
$date = \Carbon\Carbon::now()->addDays(15);
Mail::later($date, 'emails.welcome', [], function($message)
{
$message->to('foo@example.com', 'John Smith')->subject('Welcome!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment