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.
56 lines
2.7 KiB
56 lines
2.7 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<data noupdate="1">
|
|
<!--Dealership contract email data-->
|
|
<record id="contract_email_template" model="mail.template">
|
|
<field name="name">DEALERSHIP CONTRACT</field>
|
|
<field name="model_id" ref="franchise_management.model_franchise_dealer"/>
|
|
<field name="email_from">{{object.company_id.email}}</field>
|
|
<field name="email_to"/>
|
|
<field name="lang">{{ ctx.get('default_lang') }}</field>
|
|
<field name="subject">Dealership Contract</field>
|
|
<field name="body_html" type="html">
|
|
<p>
|
|
Hi,<br/>
|
|
Congratulations<br/>
|
|
You are approved for the Dealership with us.<br/>
|
|
Make sure you submit your request form completely, and<br/>
|
|
Please read carefully the pdf contract attached here and <br/>
|
|
if you are agree with our terms and conditions <br/>
|
|
Please sign the contract below for the further procedures.<br/>
|
|
You can sign digitally through the button link given here.
|
|
<br/><br/>
|
|
</p>
|
|
<div><br/>
|
|
<a style="background-color:#875A7B;
|
|
padding:8px 20px 8px 20px;
|
|
text-decoration:none; color:#fff; border-style:solid;
|
|
display:inline-block;
|
|
border-radius:5px; font-weight:bold; font-style:normal;
|
|
line-height:26px; width:auto; text-align:center"
|
|
t-attf-href="{{object.url}}">Sign and confirm</a>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
<!--Dealer Notification email template-->
|
|
<record id="portal_user_email_template" model="mail.template">
|
|
<field name="name">Login Details</field>
|
|
<field name="model_id" ref="franchise_management.model_franchise_dealer"/>
|
|
<field name="email_from">{{object.company_id.email}}</field>
|
|
<field name="email_to"/>
|
|
<field name="lang">{{ ctx.get('default_lang') }}</field>
|
|
<field name="subject">Franchise Login Details</field>
|
|
<field name="body_html" type="html">
|
|
<p>
|
|
Hi,
|
|
Congratulations<br/>
|
|
You are successfully signed our dealership contract.<br/>
|
|
And now you can log in to our website using the email and password.<br/>
|
|
email : user email address given in the franchise registration.<br/>
|
|
password : franchise00129
|
|
<br/><br/>
|
|
</p>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|
|
|