templates/emails/payment_failure.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Payment Failed</title>
  6. </head>
  7. <body>
  8. <h1>Payment Failed</h1>
  9. <p>Dear {{ user.name }},</p>
  10. <p>We regret to inform you that your recent payment of ${{ invoice.amount }} for your subscription has failed.</p>
  11. <p>Invoice Details:</p>
  12. <ul>
  13.     <li>Invoice ID: {{ invoice.id }}</li>
  14.     <li>Amount: ${{ invoice.amount }}</li>
  15.     <li>Due Date: {{ invoice.dueDate|date('Y-m-d') }}</li>
  16. </ul>
  17. <p>Please update your payment method or contact our support team for assistance. Your subscription may be affected if the payment is not completed soon.</p>
  18. <p>Best regards,<br>Your App Team</p>
  19. </body>
  20. </html>