You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

31 lines
1.6 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<data noupdate="1">
<!-- This XML snippet defines a mail template for notifying users about wallet amount transfers. -->
<record id="transfer_email_template" model="mail.template">
<field name="name">Wallet Amount Transfer</field>
<field name="model_id"
ref="website_customer_wallet.model_loyalty_card"/>
<field name="auto_delete" eval="True"/>
<field name="email_to"/>
<field name="subject">Wallet Amount Transfer</field>
<field name="body_html"/>
</record>
<!-- This XML snippet defines a mail template for notifying users about wallet amount crediting. -->
<record id="wallet_credit_template" model="mail.template">
<field name="name">Wallet:Amount Credited</field>
<field name="model_id" ref="website_customer_wallet.model_loyalty_card"/>
<field name="auto_delete" eval="True"/>
<field name="subject">Amount Credited</field>
<field name="body_html"/>
</record>
<!-- This XML snippet defines a mail template for notifying users about wallet pin changed. -->
<record id="wallet_change_pin_template" model="mail.template">
<field name="name">Wallet:PIN Changed</field>
<field name="model_id" ref="website_customer_wallet.model_loyalty_card"/>
<field name="auto_delete" eval="True"/>
<field name="subject">Amount Credited</field>
<field name="body_html"/>
</record>
</data>
</odoo>