1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Jobs/SendPaymentEmail.php
2019-01-30 22:25:37 +11:00

49 lines
919 B
PHP

<?php
namespace App\Jobs;
use App\Models\Payment;
use App\Ninja\Mailers\ContactMailer;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
/**
* Class SendInvoiceEmail.
*/
class SendPaymentEmail extends Job implements ShouldQueue
{
use InteractsWithQueue, SerializesModels;
/**
* @var Payment
*/
protected $payment;
/**
* @var string
*/
protected $server;
/**
* Create a new job instance.
* @param Payment $payment
*/
public function __construct($payment)
{
$this->payment = $payment;
$this->server = config('database.default');
}
/**
* Execute the job.
*
* @param ContactMailer $mailer
*/
public function handle(ContactMailer $contactMailer)
{
$contactMailer->sendPaymentConfirmation($this->payment);
}
}