mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
24 lines
445 B
PHP
24 lines
445 B
PHP
<?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);
|
|
}
|