Skip to content

Instantly share code, notes, and snippets.

@ofelix03
Last active December 1, 2022 22:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ofelix03/b20cf1302d870d8620c68b2f18e1a50d to your computer and use it in GitHub Desktop.
Save ofelix03/b20cf1302d870d8620c68b2f18e1a50d to your computer and use it in GitHub Desktop.
<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">ofelix03@gmail.com</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