template_email.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" ?>
  2. <odoo>
  3. <template id="availability_email_body">
  4. <div id="body">
  5. <p>Dear Customer,</p>
  6. <p>The following product is now available.</p>
  7. <div style="display: flex; justify-content: center; width: 100%;">
  8. <a t-attf-href="#{product.website_url}">
  9. <img t-attf-src="/web/image/product.product/#{product.id}/image_1920"/>
  10. </a>
  11. </div>
  12. <div style="display: flex; flex-direction: row; align-items: center; justify-content: center; width: 100%;">
  13. <p t-esc="product.name"/>
  14. <p t-if="product.product_template_attribute_value_ids"
  15. style="margin-left: 0.5em;">
  16. (<t
  17. t-out="', '.join(product.product_template_attribute_value_ids.mapped('name'))"
  18. />)
  19. </p>
  20. <p style="margin-left: 0.5em; margin-right: 0.5em">-</p>
  21. <p t-esc="product.list_price" t-options="{'widget': 'monetary', 'display_currency': product.currency_id}"/>
  22. </div>
  23. <p t-esc="product.description_sale"/>
  24. <div style="display: flex; justify-content: center; width: 100%;">
  25. <a t-attf-href="#{product.website_url}" style="background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;">
  26. Order Now
  27. </a>
  28. </div>
  29. <p>Regards,</p>
  30. </div>
  31. </template>
  32. </odoo>