mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-26 15:15:31 -05:00
18 lines
400 B
PHP
18 lines
400 B
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\Helpers\Email;
|
|
|
|
interface EntityEmailInterface
|
|
{
|
|
public function build($invitation, $reminder_template = null);
|
|
}
|