sendmail.html.php 1.3 KB

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * The mail file of auditplan module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2024 禅道软件(青岛)有限公司(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 Guangming Sun
  8. * @package auditplan
  9. * @version $Id: sendmail.html.php 4626 2013-04-10 05:34:36Z chencongzhi520@gmail.com $
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php $mailTitle = 'NC #' . $object->id . ' ' . $object->title;?>
  14. <?php include $this->app->getModuleRoot() . 'common/view/mail.header.html.php';?>
  15. <?php $app = $object->execution ? 'execution' : 'project';?>
  16. <tr>
  17. <td>
  18. <table cellpadding='0' cellspacing='0' width='600' style='border: none; border-collapse: collapse;'>
  19. <tr>
  20. <td style='padding: 10px; background-color: #F8FAFE; border: none; font-size: 14px; font-weight: 500; border-bottom: 1px solid #e5e5e5;'>
  21. <?php echo html::a($domain . helper::createLink('nc', 'view', "ncID=$object->id", 'html') . "#app=$app", $mailTitle, '', "style='color: #333; text-decoration: underline;'");?>
  22. </td>
  23. </tr>
  24. </table>
  25. </td>
  26. </tr>
  27. <?php include $this->app->getModuleRoot() . 'common/view/mail.footer.html.php';?>