1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/app/Services/Quote/SendEmail.php

62 lines
1.5 KiB
PHP
Raw Normal View History

<?php
2020-07-01 03:06:40 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2020-07-01 03:06:40 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. 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
*/
namespace App\Services\Quote;
2020-10-28 00:02:32 +01:00
use App\Jobs\Entity\EmailEntity;
use App\Models\ClientContact;
2023-02-15 01:04:47 +01:00
use App\Services\Email\MailEntity;
use App\Services\Email\MailObject;
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.
2020-10-28 11:10:49 +01:00
* @return void
*/
2020-08-19 04:55:58 +02:00
public function run()
{
2023-02-15 01:04:47 +01:00
nlog($this->reminder_template);
nlog("is there a template");
if (! $this->reminder_template) {
2020-10-27 12:57:12 +01:00
$this->reminder_template = $this->quote->calculateTemplate('quote');
}
2023-02-15 01:04:47 +01:00
$mo = new MailObject();
2022-07-27 07:39:43 +02:00
$this->quote->service()->markSent()->save();
2023-02-16 02:36:09 +01:00
$this->quote->invitations->each(function ($invitation) use ($mo) {
if (! $invitation->contact->trashed() && $invitation->contact->email) {
2023-02-15 12:31:02 +01:00
EmailEntity::dispatch($invitation, $invitation->company, $this->reminder_template);
2023-02-15 01:04:47 +01:00
2023-02-15 12:31:02 +01:00
// MailEntity::dispatch($invitation, $invitation->company->db, $mo);
}
});
}
}