message-received.phtml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * @version 7.2
  4. */
  5. ?>
  6. <h4>
  7. <?php echo $this->_('New Message Received Notification'); ?>
  8. </h4>
  9. <p><?php echo sprintf(
  10. $this->_('You have received a new message in your inbox on %s.'),
  11. $this->siteName); ?></p>
  12. <div><?php echo $this->_('Message details:'); ?></div>
  13. <ul>
  14. <li>
  15. <?php echo $this->_('Sender:'); ?>
  16. <b><?php echo $this->data['username']; ?></b>
  17. </li>
  18. <li>
  19. <?php echo $this->_('Title:'); ?>
  20. <b><?php echo $this->renderText($this->data['title']); ?></b>
  21. </li>
  22. <li>
  23. <?php echo $this->_('Message:'); ?> <br>
  24. <?php echo $this->renderText($this->data['message'], true); ?>
  25. </li>
  26. </ul>
  27. <p>
  28. <?php echo $this->_('Please'); ?>
  29. [ <a href="<?php echo $this->sitePath . $this->url($this->data['link'], null, false, null, false); ?>">
  30. <?php echo $this->_('click here'); ?>
  31. </a> ]
  32. <?php echo $this->_('to view the messaging topic.'); ?>
  33. </p>
  34. <p>
  35. <?php echo $this->_('Best regards'); ?> <br>
  36. <?php echo $this->siteName; ?>
  37. </p>