2020-04-30 13:45:47 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-30 13:45:47 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-04-30 13:45:47 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\DataMapper;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* EmailSpooledForSend.
|
2020-04-30 13:45:47 +02:00
|
|
|
*
|
2020-09-06 11:38:10 +02:00
|
|
|
* Stubbed class used to store the meta data
|
2020-04-30 13:45:47 +02:00
|
|
|
* for an email that was unable to be sent
|
|
|
|
* for a reason such as:
|
2020-09-06 11:38:10 +02:00
|
|
|
*
|
2020-04-30 13:45:47 +02:00
|
|
|
* - Quota exceeded
|
|
|
|
* - SMTP issues
|
|
|
|
* - Upstream connectivity
|
|
|
|
*/
|
|
|
|
class EmailSpooledForSend
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
public $entity_name;
|
2020-04-30 13:45:47 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public $invitation_key = '';
|
2020-04-30 13:45:47 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public $reminder_template = '';
|
2020-04-30 13:45:47 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public $subject = '';
|
2020-04-30 13:45:47 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public $body = '';
|
|
|
|
}
|