Create a gist now

Instantly share code, notes, and snippets.

What would you like to do?
$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