mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 10:19:09 +02:00
19 lines
771 B
XML
19 lines
771 B
XML
<odoo noupdate="1">
|
|
|
|
<!-- Email template for send notification on Membership expiration-->
|
|
<record id="membership_expiration" model="mail.template">
|
|
<field name="name">Membership Reminder</field>
|
|
<field name="email_from">${(user.partner_id.email or '')|safe}</field>
|
|
<field name="subject">Reminder for Membership Expiration</field>
|
|
<field name="email_to">${(object.email or '')|safe}</field>
|
|
<field name="model_id" ref="base.model_res_partner"/>
|
|
<field name="body_html"><![CDATA[
|
|
<p>Hello,</p>
|
|
<p>Your Membership will expire within 7 days.
|
|
Requesting you to do the needful actions.</p>
|
|
<p>Thank you,</p>]]>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|