2020-02-15 10:01:15 +01:00
|
|
|
<?php
|
2020-07-01 03:06:40 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-07-01 03:06:40 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-07-01 03:06:40 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-07-01 03:06:40 +02:00
|
|
|
*/
|
|
|
|
|
2020-02-15 10:01:15 +01:00
|
|
|
namespace App\Services\Payment;
|
|
|
|
|
|
|
|
use App\Jobs\Payment\EmailPayment;
|
|
|
|
|
|
|
|
class SendEmail
|
|
|
|
{
|
|
|
|
public $payment;
|
|
|
|
|
2020-05-09 00:35:49 +02:00
|
|
|
public $contact;
|
|
|
|
|
|
|
|
public function __construct($payment, $contact)
|
2020-02-15 10:01:15 +01:00
|
|
|
{
|
|
|
|
$this->payment = $payment;
|
2020-05-09 00:35:49 +02:00
|
|
|
|
|
|
|
$this->contact = $contact;
|
2020-02-15 10:01:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Builds the correct template to send.
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return void
|
2020-02-15 10:01:15 +01:00
|
|
|
*/
|
2020-05-09 00:35:49 +02:00
|
|
|
public function run()
|
2020-02-15 10:01:15 +01:00
|
|
|
{
|
2021-10-08 07:23:00 +02:00
|
|
|
$this->payment->load('company', 'client.contacts');
|
|
|
|
|
2022-08-04 08:22:48 +02:00
|
|
|
$contact = $this->payment->client->contacts()->first();
|
|
|
|
|
2022-08-04 08:41:56 +02:00
|
|
|
if ($contact?->email)
|
2022-11-27 22:24:10 +01:00
|
|
|
EmailPayment::dispatch($this->payment, $this->payment->company, $contact)->delay(now()->addSeconds(3));
|
2022-08-04 08:22:48 +02:00
|
|
|
|
2020-02-15 10:01:15 +01:00
|
|
|
}
|
|
|
|
}
|