Last active
December 1, 2022 22:36
-
-
Save ofelix03/c0ef8f9120380f01ae39909370ffec3e to your computer and use it in GitHub Desktop.
This file contains 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
<odoo> | |
<data> | |
<record id="interested_property_template" model="mail.template"> | |
<field name="name">Realtor: I'm Intersted In Property</field> | |
<field name="model_id" ref="model_realtor_property" /> | |
<field name="body_html" type="html"> | |
<div> | |
<p>Hello <strong>--property-manager-name--</strong>,</p> | |
<p>An individual has shown interest in your property <strong>--property-name--</strong>.</p> | |
<p>Contact them using the information below.</p> | |
<ul> | |
<li><strong>Name:</strong> <strong>--customer-name--</strong></li> | |
<li><strong>Email:</strong> <strong>--customer-email--</strong></li> | |
<li><strong>Mobile:</strong> <strong>--customer-mobile--</strong></li> | |
</ul> | |
</div> | |
</field> | |
</record> | |
</data> | |
</odoo> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment