Last active
April 14, 2026 11:07
-
-
Save blocka/8da47f1ca6cd5141dc135bd3bee63f10 to your computer and use it in GitHub Desktop.
Payment Cancellation Confirmation - Ashtar Family
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <style> | |
| body { | |
| font-family: Arial, Helvetica, sans-serif; | |
| background: #f5f5f5; | |
| margin: 0; | |
| padding: 20px; | |
| } | |
| .container { | |
| max-width: 600px; | |
| margin: 0 auto; | |
| background: #ffffff; | |
| border-radius: 8px; | |
| overflow: hidden; | |
| box-shadow: 0 2px 8px rgba(0,0,0,0.1); | |
| } | |
| .header { | |
| background: #1a3a5c; | |
| color: #ffffff; | |
| padding: 24px 32px; | |
| text-align: center; | |
| } | |
| .header h1 { | |
| margin: 0; | |
| font-size: 20px; | |
| font-weight: 600; | |
| } | |
| .body { | |
| padding: 32px; | |
| color: #333333; | |
| line-height: 1.6; | |
| } | |
| .body p { | |
| margin: 0 0 16px; | |
| } | |
| .details { | |
| background: #f8f9fa; | |
| border: 1px solid #e9ecef; | |
| border-radius: 6px; | |
| padding: 20px; | |
| margin: 20px 0; | |
| } | |
| .details table { | |
| width: 100%; | |
| border-collapse: collapse; | |
| } | |
| .details td { | |
| padding: 6px 0; | |
| font-size: 14px; | |
| } | |
| .details td:first-child { | |
| font-weight: 600; | |
| color: #555; | |
| width: 160px; | |
| } | |
| .confirmation { | |
| background: #e8f5e9; | |
| border-left: 4px solid #4caf50; | |
| padding: 16px 20px; | |
| margin: 20px 0; | |
| border-radius: 0 6px 6px 0; | |
| } | |
| .confirmation p { | |
| margin: 0; | |
| font-weight: 600; | |
| color: #2e7d32; | |
| } | |
| .footer { | |
| padding: 20px 32px; | |
| border-top: 1px solid #eeeeee; | |
| font-size: 13px; | |
| color: #888888; | |
| } | |
| .footer p { | |
| margin: 0 0 4px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="header"> | |
| <h1>Payment Cancellation Confirmation</h1> | |
| </div> | |
| <div class="body"> | |
| <p>Dear Ashtar Family,</p> | |
| <p>This letter confirms that the remaining installment payments listed below have been cancelled. No further charges will be made.</p> | |
| <div class="details"> | |
| <table> | |
| <tr> | |
| <td>Program</td> | |
| <td>Camp Dror Girls</td> | |
| </tr> | |
| <tr> | |
| <td>Payment Amount</td> | |
| <td>2,163 ILS per installment</td> | |
| </tr> | |
| <tr> | |
| <td>Card</td> | |
| <td>Visa ending in 1459</td> | |
| </tr> | |
| <tr> | |
| <td>Cancellation Date</td> | |
| <td>April 14, 2026</td> | |
| </tr> | |
| </table> | |
| </div> | |
| <div class="confirmation"> | |
| <p>No further charges will be made to this card.</p> | |
| </div> | |
| <p>If you have any questions, please contact the Camp Dror office.</p> | |
| </div> | |
| <div class="footer"> | |
| <p>Orthodox Union</p> | |
| <p>40 Rector St, New York, NY 10006</p> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment