From bd0ed331797717ff9db63216df550d95674ba248 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 18 Feb 2017 19:13:08 -0500 Subject: Add Reply-To header to emails sent from Kanboard --- app/Core/Mail/ClientInterface.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'app/Core/Mail/ClientInterface.php') diff --git a/app/Core/Mail/ClientInterface.php b/app/Core/Mail/ClientInterface.php index 66263a98..3bfa32d3 100644 --- a/app/Core/Mail/ClientInterface.php +++ b/app/Core/Mail/ClientInterface.php @@ -5,7 +5,7 @@ namespace Kanboard\Core\Mail; /** * Mail Client Interface * - * @package mail + * @package Kanboard\Core\Mail * @author Frederic Guillot */ interface ClientInterface @@ -14,11 +14,12 @@ interface ClientInterface * Send a HTML email * * @access public - * @param string $email - * @param string $name - * @param string $subject - * @param string $html - * @param string $author + * @param string $recipientEmail + * @param string $recipientName + * @param string $subject + * @param string $html + * @param string $authorName + * @param string $authorEmail */ - public function sendEmail($email, $name, $subject, $html, $author); + public function sendEmail($recipientEmail, $recipientName, $subject, $html, $authorName, $authorEmail = ''); } -- cgit v1.2.3