Skip to content

Instantly share code, notes, and snippets.

@prasanth-j
Created June 20, 2023 12:55
Show Gist options
  • Save prasanth-j/ea4042e375573f1ce4fe15ff8bf2a494 to your computer and use it in GitHub Desktop.
Save prasanth-j/ea4042e375573f1ce4fe15ff8bf2a494 to your computer and use it in GitHub Desktop.
Redirects emails to configured mail during testing to prevent accidental deliveries
<?php
use Illuminate\Support\Facades\Mail;
public function boot()
{
if (!$this->app->environment('production')) {
Mail::alwaysTo('admin@example.com');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment