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.
55 lines
2.8 KiB
55 lines
2.8 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Email Template: Email for renew subscription -->
|
|
<record id="mail_template_subscription_renew" model="mail.template">
|
|
<field name="name">Subscription: Email Renew Alert</field>
|
|
<field name="model_id" ref="subscription_package.model_subscription_package"/>
|
|
<field name="subject">{{ object.company_id.name }}: Please check the subscription {{ object.name }}</field>
|
|
<field name="email_from">{{ object.company_id.email }}</field>
|
|
<field name="email_to">{{ object.partner_id.email }}</field>
|
|
<field name="auto_delete" eval="True"/>
|
|
<field name="lang">{{ object.partner_id.lang }}</field>
|
|
<field name="body_html" type="html">
|
|
<div style="background:#F0F0F0;color:#515166;padding:10px 0px;font-family:Arial,Helvetica,sans-serif;font-size:14px;">
|
|
<table style="width:600px;margin:5px auto;">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<a href="/">
|
|
<img src="/web/binary/company_logo"
|
|
style="vertical-align:baseline;max-width:100px;"/>
|
|
</a>
|
|
</td>
|
|
<td style="text-align:right;vertical-align:middle;">
|
|
Subscription Renew Alert
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<table style="width:600px;margin:0px auto;background:white;border:1px solid #e1e1e1;">
|
|
<tbody>
|
|
<tr>
|
|
<td style="padding:15px 20px 10px 20px;">
|
|
<p>Dear<t t-out=" object.partner_id.name or ''"/>,
|
|
</p>
|
|
<p>Your subscription Plan
|
|
<strong t-out="object.name or ''"/>
|
|
is going to Expired on
|
|
<strong t-out="object.close_date or ''"/>.
|
|
</p>
|
|
<p>If you have any concerns about it, please contact your representative at
|
|
<t
|
|
t-out="object.company_id.name or ''"/>
|
|
or reply to this email.
|
|
</p>
|
|
<p>Kind regards.</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|