Files
Global-Jain/app/Jobs/Sangh/SanghRequestSentJob.php

41 lines
908 B
PHP
Raw Normal View History

2025-11-05 10:37:10 +05:30
<?php
namespace App\Jobs\Sangh;
use App\Mail\Sangh\SanghRequestSentMail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Mail;
class SanghRequestSentJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $sangh;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct($sangh)
{
$this->sangh = $sangh;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
//Patient
$email = new SanghRequestSentMail($this->sangh);
Mail::to('connect@globaljain.net')->queue($email);
}
}