diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-02-18 19:13:08 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-02-18 19:13:08 -0500 |
commit | bd0ed331797717ff9db63216df550d95674ba248 (patch) | |
tree | 0f3fbe140b26274ab5ac80b74aa7a29d37b0689b /doc | |
parent | b4dc602381a367ce9ed1a1bbe28b7903976fdabe (diff) |
Add Reply-To header to emails sent from Kanboard
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en_US/plugin-mail-transports.markdown | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/en_US/plugin-mail-transports.markdown b/doc/en_US/plugin-mail-transports.markdown index 33ce5e3b..f3f9efc6 100644 --- a/doc/en_US/plugin-mail-transports.markdown +++ b/doc/en_US/plugin-mail-transports.markdown @@ -24,13 +24,14 @@ 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 = ''); } ``` |