purchase.phtml 466 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @version 7.4
  4. */
  5. ?>
  6. <p>
  7. <?php echo sprintf(
  8. $this->_('Thank you for your purchase on %s. Please find the details below:'),
  9. $this->siteName); ?>
  10. </p>
  11. <?php echo $this->partial('partials/sale.phtml', array(
  12. 'sale' => $this->data['sale'],
  13. 'postageDesc' => true,
  14. 'caption' => true,
  15. 'type' => 'bought')); ?>
  16. <p>
  17. <?php echo $this->_('Best regards'); ?> <br>
  18. <?php echo $this->siteName; ?>
  19. </p>