41 lines
908 B
PHP
41 lines
908 B
PHP
|
|
<?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);
|
||
|
|
}
|
||
|
|
}
|