bemade-addons/bemade_partner_email_domain/data/mail_template.xml
2023-11-03 15:17:57 -04:00

41 lines
2.4 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<data noupdate="1">
<record id="email_template_division_selection" model="mail.template">
<field name="name">Division Selection: Choose Your Division</field>
<field name="model_id" ref="base.model_res_partner"/>
<field name="email_from">{{object.company_id.email_formatted or user.email_formatted}}</field>
<field name="partner_to">{{object.id}}</field>
<field name="subject">Select Your Division at {{object.company_id.name}}</field>
<field name="body_html" type="html">
<div style="margin: 0px; padding: 0px">
<p style="margin: 0px; padding: 0px; font-size: 13px;">
Hello <t t-out="object.name or ''">Brandon Freeman</t>,
</p>
<p style="margin: 0px; padding: 0px; font-size: 13px;">
We noticed that you have registered with our company. To provide you with the best possible service, we need you to confirm the division of our company that you are working with.
</p>
<p style="margin: 0px; padding: 0px; font-size: 13px;">
Please click on the link below to select your division:
</p>
<p style="margin: 16px; padding: 0px; font-size: 13px;">
<a href="{{object.get_division_selection_url()}}" style="text-decoration: none; color: #875A7B;">Choose Your Division</a>
</p>
<p style="margin: 0px; padding: 0px; font-size: 13px;">
If you have any questions or did not register with us, please disregard this email or contact us directly.
</p>
<p style="margin: 0px; padding: 0px; font-size: 13px;">
<br/>Best regards,
</p>
<p style="margin: 0px; padding: 0px; font-size: 13px;">
<br/>The <t t-out="object.company_id.name"/> team.<br/>
<t t-esc="object.company_id.email"/><br/>
<t t-esc="object.company_id.phone"/>
</p>
</div>
</field>
<field name="lang">{{ object.lang }}</field>
<field name="auto_delete" eval="True"/>
</record>
</data>
</odoo>