sendmail.html.php 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * The sendmail view file of reviewissue module of ZenTaoPMS.
  4. * @copyright Copyright 2009-2025 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  5. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  6. * @author Shujie Tian <tianshujie@chandao.com>
  7. * @package reviewissue
  8. * @link https://www.zentao.net
  9. */
  10. ?>
  11. <?php $mailTitle = 'Reviewissue #' . $object->id . ' ' . $object->title;?>
  12. <?php include $this->app->getModuleRoot() . 'common/view/mail.header.html.php';?>
  13. <tr>
  14. <td>
  15. <table cellpadding='0' cellspacing='0' width='600' style='border: none; border-collapse: collapse;'>
  16. <tr>
  17. <td style='padding: 10px; background-color: #F8FAFE; border: none; font-size: 14px; font-weight: 500; border-bottom: 1px solid #e5e5e5;'>
  18. <?php echo html::a($domain . helper::createLink('reviewissue', 'view', "issueID=$object->id", 'html'), $mailTitle, '', "style='text-decoration: underline;'");?>
  19. </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->reviewissue->opinion;?></legend>
  28. <div style='padding:5px;'><?php echo $object->opinion;?></div>
  29. </fieldset>
  30. </td>
  31. </tr>
  32. <?php include $this->app->getModuleRoot() . 'common/view/mail.footer.html.php';?>