change_of_address_email.html 986 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. </head>
  6. <body>
  7. {% if title %}<p>TITLE: {{ title }}</p>{% endif %}
  8. {% if account_number %}<p>ACCOUNT NUMBER: {{ account_number }}</p>{% endif %}
  9. <br>
  10. <br>
  11. <p>OLD ADDRESS:
  12. {% with address=old_address %}
  13. {% include "storefront/address.inc" %}
  14. {% endwith %}
  15. </p>
  16. <br>
  17. <br>
  18. <p>
  19. NEW ADDRESS:
  20. {% with address=new_address %}
  21. {% include "storefront/address.inc" %}
  22. {% endwith %}
  23. </p>
  24. <br>
  25. <br>
  26. {% if date_effective %}
  27. <p>
  28. DATE EFFECTIVE:
  29. {{ date_effective }}
  30. {% if date_effective = 'RANGE' %}
  31. From: {{ date_from }}
  32. To: {{ date_to }}
  33. {% endif %}
  34. </p>
  35. </p>
  36. {% endif %}
  37. <br>
  38. <p><img src="https://penobscotbaypress.com/media/images/headers/pbp_sharing_logo_small.jpg"><br>
  39. <strong>Penobscot Bay Press Community Information Services</strong><br>
  40. PO Box 36, 69 Main St., Stonington, ME 04681<br>
  41. 207-367-2200<br>
  42. <a href="http://penobscotbaypress.com">penobscotbaypress.com</a></p>
  43. <br>
  44. </body>
  45. </html>