mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
53 lines
1.2 KiB
PHP
53 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Services\Quote;
|
|
|
|
use App\Jobs\Entity\EmailEntity;
|
|
use App\Models\ClientContact;
|
|
|
|
class SendEmail
|
|
{
|
|
public $quote;
|
|
|
|
protected $reminder_template;
|
|
|
|
protected $contact;
|
|
|
|
public function __construct($quote, $reminder_template = null, ClientContact $contact = null)
|
|
{
|
|
$this->quote = $quote;
|
|
|
|
$this->reminder_template = $reminder_template;
|
|
|
|
$this->contact = $contact;
|
|
}
|
|
|
|
/**
|
|
* Builds the correct template to send.
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
if (! $this->reminder_template) {
|
|
$this->reminder_template = $this->quote->calculateTemplate('quote');
|
|
}
|
|
|
|
$this->quote->invitations->each(function ($invitation) {
|
|
if ($invitation->contact->send_email && $invitation->contact->email) {
|
|
EmailEntity::dispatchNow($invitation, $invitation->company, $this->reminder_template);
|
|
}
|
|
});
|
|
|
|
$this->quote->service()->markSent();
|
|
}
|
|
}
|