diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-02-18 18:25:46 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-02-18 18:25:46 -0500 |
commit | b4dc602381a367ce9ed1a1bbe28b7903976fdabe (patch) | |
tree | 7edc2532f56abd66ff7f20b8a75dd0268d69310c /app/Template/comment_mail | |
parent | 5710bab97198234afced474250f20e24332fd6fc (diff) |
Send comments by email
Diffstat (limited to 'app/Template/comment_mail')
-rw-r--r-- | app/Template/comment_mail/create.php | 21 | ||||
-rw-r--r-- | app/Template/comment_mail/email.php | 1 |
2 files changed, 22 insertions, 0 deletions
diff --git a/app/Template/comment_mail/create.php b/app/Template/comment_mail/create.php new file mode 100644 index 00000000..57ddeb39 --- /dev/null +++ b/app/Template/comment_mail/create.php @@ -0,0 +1,21 @@ +<div class="page-header"> + <h2><?= t('Create and send comment by email') ?></h2> +</div> +<form method="post" action="<?= $this->url->href('CommentMailController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off"> + <?= $this->form->csrf() ?> + <?= $this->form->hidden('task_id', $values) ?> + <?= $this->form->hidden('user_id', $values) ?> + + <?= $this->form->label(t('Email'), 'email') ?> + <?= $this->form->email('email', $values, $errors, array('autofocus', 'required', 'tabindex="1"')) ?> + + <?= $this->form->label(t('Subject'), 'subject') ?> + <?= $this->form->text('subject', $values, $errors, array('required', 'tabindex="2"')) ?> + + <?= $this->form->textEditor('comment', $values, $errors, array('required' => true, 'tabindex' => 3)) ?> + + <?= $this->modal->submitButtons(array( + 'submitLabel' => t('Send by email'), + 'tabindex' => 4, + )) ?> +</form> diff --git a/app/Template/comment_mail/email.php b/app/Template/comment_mail/email.php new file mode 100644 index 00000000..a89284f4 --- /dev/null +++ b/app/Template/comment_mail/email.php @@ -0,0 +1 @@ +<?= $this->text->markdown($email['comment'], true) ?> |