balance-payment-reminder.phtml 920 B

123456789101112131415161718192021222324
  1. <h4>
  2. <?php echo $this->_('Account Balance Payment Reminder'); ?>
  3. </h4>
  4. <p>
  5. <?php echo sprintf(
  6. $this->_('This is a notification for clearing your account balance for your user account, <strong>%s</strong>. The balance is %s debit.'),
  7. $this->data['user']['username'],
  8. $this->amount($this->data['user']['balance'])); ?>
  9. </p>
  10. <p>
  11. <?php echo $this->_('Please'); ?>
  12. [ <a
  13. href="<?php echo $this->sitePath . $this->url(array('module' => 'app', 'controller' => 'payment', 'action' => 'credit-balance'),
  14. null, false, null, false); ?>">
  15. <?php echo $this->_('click here'); ?>
  16. </a> ]
  17. <?php echo $this->_('to clear your account balance.'); ?> <br>
  18. <?php echo $this->_('Please note that you will have to login first.'); ?>
  19. </p>
  20. <p>
  21. <?php echo $this->_('Best regards'); ?> <br>
  22. <?php echo $this->siteName; ?></p>
  23. </p>