mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 23:13:15 +00:00
24 lines
407 B
PHP
24 lines
407 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Notification\Mail;
|
|
|
|
use Alchemy\Phrasea\Notification\Emitter;
|
|
use Alchemy\Phrasea\Notification\Receiver;
|
|
|
|
interface MailInterface
|
|
{
|
|
/**
|
|
* @return Emitter
|
|
*/
|
|
public function emitter();
|
|
/**
|
|
* @return Receiver
|
|
*/
|
|
public function receiver();
|
|
public function subject();
|
|
|
|
public function message();
|
|
|
|
public function renderHTML();
|
|
}
|