Remove social link items and update test email

This commit is contained in:
2024-08-03 11:32:43 +10:00
parent df3f7e31be
commit 78a8f63ac9
8 changed files with 20 additions and 219 deletions

View File

@@ -6,17 +6,20 @@ use Illuminate\Console\Command;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\Mail;
use App\Mail\TestEmail as MailTest;
use App\Mail\Test;
use App\Models\{Site,User};
class TestEmail extends Command
class EmailTest extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'test:email {site : Site ID} {id : User ID} {email? : Alternative Email}';
protected $signature = 'test-email'
.' {--s|site : Site ID}'
.' {id : User ID}'
.' {email? : Alternative Email}';
/**
* The console command description.
@@ -25,16 +28,6 @@ class TestEmail extends Command
*/
protected $description = 'Send a test email';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
@@ -42,11 +35,20 @@ class TestEmail extends Command
*/
public function handle()
{
Config::set('site',Site::findOrFail($this->argument('site')));
Config::set(
'site',
$this->option('site')
? Site::findOrFail($this->option('site'))
: Site::where('url',config('app.url'))->sole()
);
$uo = User::find($this->argument('id'));
Mail::to($this->argument('email') ?? $uo->email)
->send(new MailTest($uo));
$result = Mail::to($this->argument('email') ?? $uo->email)
->send(new Test($uo));
$this->info($result->getMessageId());
return self::SUCCESS;
}
}