sendmail.html.php 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * The mail file of feedback module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Yidong Wang <yidong@cnezsoft.com>
  8. * @package bug
  9. * @version $Id: sendmail.html.php 4129 2013-01-18 01:58:14Z wwccss $
  10. * @link http://www.zentao.net
  11. */
  12. ?>
  13. <?php $mailTitle = $this->lang->feedback->common . ' #' . $feedback->id . ' ' . $feedback->title;?>
  14. <?php include $this->app->getModuleRoot() . 'common/view/mail.header.html.php';?>
  15. <tr>
  16. <td>
  17. <table cellpadding='0' cellspacing='0' width='600' style='border: none; border-collapse: collapse;'>
  18. <tr>
  19. <td style='padding: 10px; background-color: #F8FAFE; border: none; font-size: 14px; font-weight: 500; border-bottom: 1px solid #e5e5e5;'><?php echo html::a(zget($this->config->mail, 'domain', common::getSysURL()) . helper::createLink('feedback', 'view', "feedbackID=$feedback->id"), $mailTitle, '', "style='color: #333; text-decoration: underline;'");?></td>
  20. </tr>
  21. </table>
  22. </td>
  23. </tr>
  24. <tr>
  25. <td style='padding: 10px; border: none;'>
  26. <fieldset style='border: 1px solid #e5e5e5'>
  27. <legend style='color: #114f8e'><?php echo $this->lang->feedback->desc;?></legend>
  28. <div style='padding:5px;'><?php echo $feedback->desc;?></div>
  29. </fieldset>
  30. </td>
  31. </tr>
  32. <?php include $this->app->getModuleRoot() . 'common/view/mail.footer.html.php';?>