1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Jobs/Payment/EmailPayment.php

95 lines
2.7 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Jobs\Payment;
use App\Events\Payment\PaymentWasEmailed;
use App\Events\Payment\PaymentWasEmailedAndFailed;
2020-09-14 07:14:37 +02:00
use App\Jobs\Mail\BaseMailerJob;
use App\Libraries\MultiDB;
2020-11-09 03:39:42 +01:00
use App\Mail\Engine\PaymentEmailEngine;
use App\Mail\TemplateEmail;
2020-11-09 03:39:42 +01:00
use App\Models\ClientContact;
use App\Models\Company;
use App\Models\Payment;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Mail;
2020-09-14 07:14:37 +02:00
class EmailPayment extends BaseMailerJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $payment;
public $email_builder;
private $contact;
2020-11-01 04:19:03 +01:00
private $company;
2020-11-09 03:39:42 +01:00
public $settings;
2020-11-09 03:57:34 +01:00
/**
* Create a new job instance.
*
2020-10-28 11:10:49 +01:00
* @param Payment $payment
* @param $email_builder
* @param $contact
2020-11-01 04:19:03 +01:00
* @param $company
*/
2020-11-09 03:39:42 +01:00
public function __construct(Payment $payment, Company $company, ClientContact $contact)
{
$this->payment = $payment;
$this->contact = $contact;
2020-11-01 04:19:03 +01:00
$this->company = $company;
2020-11-09 03:39:42 +01:00
$this->settings = $payment->client->getMergedSettings();
}
/**
* Execute the job.
*
*
* @return void
*/
public function handle()
2020-11-12 04:04:27 +01:00
{
2020-11-25 15:19:52 +01:00
if ($this->company->is_disabled) {
2020-11-01 04:19:03 +01:00
return true;
2020-11-25 15:19:52 +01:00
}
2020-11-01 04:19:03 +01:00
if ($this->contact->email) {
2020-11-25 15:19:52 +01:00
MultiDB::setDb($this->company->db);
2020-09-14 07:14:37 +02:00
//if we need to set an email driver do it now
$this->setMailDriver();
2020-11-09 03:39:42 +01:00
$email_builder = (new PaymentEmailEngine($this->payment, $this->contact))->build();
2020-11-25 15:19:52 +01:00
try {
2020-11-12 04:04:27 +01:00
$mail = Mail::to($this->contact->email, $this->contact->present()->name());
$mail->send(new TemplateEmail($email_builder, $this->contact->user, $this->contact->client));
2020-11-25 15:19:52 +01:00
} catch (\Exception $e) {
2020-11-12 04:04:27 +01:00
info("mailing failed with message " . $e->getMessage());
2020-11-12 05:37:50 +01:00
event(new PaymentWasEmailedAndFailed($this->payment, $this->company, Mail::failures(), Ninja::eventVars()));
2020-11-12 10:41:19 +01:00
$this->failed($e);
2020-11-12 05:37:50 +01:00
return $this->logMailError($e->getMessage(), $this->payment->client);
2020-11-12 04:04:27 +01:00
}
2020-07-08 14:02:16 +02:00
event(new PaymentWasEmailed($this->payment, $this->payment->company, Ninja::eventVars()));
}
}
}