Last active
December 1, 2022 22:29
-
-
Save ofelix03/b20cf1302d870d8620c68b2f18e1a50d 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="subject">Someone's Interested in Your Property</field> | |
<field name="email_from">[email protected]</field> | |
<field name="email_to">${object.env.user.email}</field> | |
<field name="body_html" type="html"> | |
<div> | |
<p>Hello <strong>${object.manager_id.name}</strong>,</p> | |
<p>An individual has shown interest in your property <strong>${object.name}</strong>.</p> | |
<p>Contact them using the information below.</p> | |
<ul> | |
<li><strong>Name:</strong> <strong>${object.env.user.name}</strong></li> | |
<li><strong>Email:</strong> <strong>${object.env.user.email}</strong></li> | |
<li><strong>Mobile:</strong> <strong>${object.env.user.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