diff options
Diffstat (limited to 'app/Core/Mail/ClientInterface.php')
-rw-r--r-- | app/Core/Mail/ClientInterface.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/Core/Mail/ClientInterface.php b/app/Core/Mail/ClientInterface.php new file mode 100644 index 00000000..66263a98 --- /dev/null +++ b/app/Core/Mail/ClientInterface.php @@ -0,0 +1,24 @@ +<?php + +namespace Kanboard\Core\Mail; + +/** + * Mail Client Interface + * + * @package mail + * @author Frederic Guillot + */ +interface ClientInterface +{ + /** + * Send a HTML email + * + * @access public + * @param string $email + * @param string $name + * @param string $subject + * @param string $html + * @param string $author + */ + public function sendEmail($email, $name, $subject, $html, $author); +} |