mail_templates.xml 642 B

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo><data noupdate="1">
  3. <template id="portal_share_template">
  4. <div>
  5. <p>Dear <span t-esc="partner.name"/>,</p>
  6. <p>You have been invited to access the following document:</p>
  7. <br/>
  8. <a t-attf-href="#{share_link}" style="background-color: #875A7B; padding: 10px; text-decoration: none; color: #fff; border-radius: 5px; font-size: 12px;"><strong>Open </strong><strong t-esc="record.display_name"/></a><br/>
  9. <br/>
  10. <p t-if="note" style="white-space: pre-wrap;" t-esc="note"/>
  11. </div>
  12. </template>
  13. </data></odoo>