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
3.5 KiB
56 lines
3.5 KiB
<?xml version="1.0"?>
|
|
<odoo>
|
|
<!-- Email Template: Email for renew subscription -->
|
|
<record id="mail_template_subscription_order" model="mail.template">
|
|
<field name="name">Subscription: Send Subscription Order From Website</field>
|
|
<field name="model_id" ref="website_subscription_package.model_subscription_package"/>
|
|
<field name="subject">{{ object.company_id.name }}: Subscription Order {{ object.name }}</field>
|
|
<field name="email_from">{{ object.company_id.email }}</field>
|
|
<field name="email_to">{{ object.partner_id.email }}</field>
|
|
<field name="description">Sent Subscription Order to customers.</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 border="0" cellpadding="0" cellspacing="0"
|
|
style="padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;">
|
|
<tr>
|
|
<td align="center">
|
|
<table border="0" cellpadding="0" cellspacing="0"
|
|
width="590"
|
|
style="padding: 16px; background-color: white; color: #454748; border-collapse:separate;">
|
|
<tbody>
|
|
<!-- CONTENT -->
|
|
<tr>
|
|
<td align="center"
|
|
style="min-width: 590px;">
|
|
<table border="0" cellpadding="0"
|
|
cellspacing="0" width="590"
|
|
style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;">
|
|
<tr><td valign="top" style="font-size: 13px;">
|
|
<div>
|
|
Dear <t t-out="object.partner_id.name or ''">Marc Demo</t>,
|
|
<br/>
|
|
<br/>
|
|
Your subscription<span style="font-weight:bold; font-size: 15px;" t-out="object.name or ''">
|
|
SUB001
|
|
</span>
|
|
has been created for product
|
|
<span t-out="object.product_line_ids.product_id.name or ''">Product
|
|
</span>
|
|
<br/>Do not Hesitate to contact us.
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|