55 lines
1.5 KiB
PHP
55 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
use App\Models;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Contracts\Mail\Mailer;
|
|
|
|
class SendNewNotesEmailAlert implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
protected $note;
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(Models\ClientNote $note)
|
|
{
|
|
$this->note = $note;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle(Mailer $mailer)
|
|
{
|
|
$note = $this->note;
|
|
$emails = ['samuel@click-mobile.com'];
|
|
|
|
//$note_body = $note->notes_body;
|
|
|
|
|
|
$data = [
|
|
'client' => $note->client_info->name,
|
|
'created_by' => $note->created_by_info->name,
|
|
'services' => $note->services,
|
|
'notes_body' => $note->notes_body
|
|
];
|
|
|
|
\Log::info("New notes for : " . $note->client_info->name);
|
|
\Log::info("New notes triggered by : " . $note->created_by_info->name);
|
|
\Log::info($note->notes_body);
|
|
$mailer->send('emails.new-notes', $data, function ($message) use ($data, $emails) {
|
|
$message->from('support@click-mobile.com', 'Click Mobile ERP');
|
|
$message->to($emails)->subject('New Notes');
|
|
});
|
|
}
|
|
}
|