mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
43e57d0117
* minor fix for payment notifications * styleci * Limit Self updating to self hosters only : * Fixes for designs * Minor fixes for self-update
55 lines
1.5 KiB
PHP
55 lines
1.5 KiB
PHP
<?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\Services\Invoice;
|
|
|
|
use App\Helpers\Email\InvoiceEmail;
|
|
use App\Jobs\Invoice\EmailInvoice;
|
|
use App\Models\ClientContact;
|
|
use App\Models\Invoice;
|
|
use App\Services\AbstractService;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
class SendEmail extends AbstractService
|
|
{
|
|
protected $invoice;
|
|
|
|
public function __construct(Invoice $invoice, $reminder_template = null, ClientContact $contact = null)
|
|
{
|
|
$this->invoice = $invoice;
|
|
|
|
$this->reminder_template = $reminder_template;
|
|
|
|
$this->contact = $contact;
|
|
}
|
|
|
|
|
|
/**
|
|
* Builds the correct template to send
|
|
* @param string $reminder_template The template name ie reminder1
|
|
* @return array
|
|
*/
|
|
public function run()
|
|
{
|
|
if (!$this->reminder_template) {
|
|
$this->reminder_template = $this->invoice->calculateTemplate();
|
|
}
|
|
|
|
$this->invoice->invitations->each(function ($invitation) {
|
|
$email_builder = (new InvoiceEmail())->build($invitation, $this->reminder_template);
|
|
|
|
if ($invitation->contact->send && $invitation->contact->email) {
|
|
EmailInvoice::dispatch($email_builder, $invitation, $invitation->company);
|
|
}
|
|
});
|
|
}
|
|
}
|