1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/DataMapper/EmailSpooledForSend.php

37 lines
703 B
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @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)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\DataMapper;
/**
* EmailSpooledForSend.
*
* Stubbed class used to store the meta data
* for an email that was unable to be sent
* for a reason such as:
*
* - Quota exceeded
* - SMTP issues
* - Upstream connectivity
*/
class EmailSpooledForSend
{
public $entity_name;
public $invitation_key = '';
public $reminder_template = '';
public $subject = '';
public $body = '';
}