odex25_standard/odex25_dms/dms/data/mail_templates.xml

121 lines
8.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="1">
<!--Email template -->
<record id="mail_template_document_request" model="mail.template">
<field name="name">Document Request: Send by email</field>
<field name="model_id" ref="model_documents_share"/>
<field name="subject">Document Request ${object.name != False and ': '+ object.name or ''}</field>
<field name="email_to">${object.owner_id.email_formatted | safe}</field>
<field name="body_html" type="html">
<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>
<!-- HEADER -->
<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="middle">
<span style="font-size: 10px;">
Document Request: <br/>
% if object.name:
<span style="font-size: 20px; font-weight: bold;">
${object.name | safe}
</span>
% endif
</span><br/>
</td><td valign="middle" align="right">
<img src="/logo.png?company=${object.create_uid.company_id.id}" style="padding: 0px; margin: 0px; height: auto; width: 80px;" alt="${object.create_uid.company_id.name}"/>
</td></tr>
<tr><td colspan="2" style="text-align:center;">
<hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;"/>
</td></tr>
</table>
</td>
</tr>
<!-- 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>
Hello ${object.owner_id.name},
<br/><br/>
${object.create_uid.name} (${object.create_uid.email}) asks you to provide the following document:
<br/><br/>
<center>
<div>
% if object.name:
<b>${object.name | safe}</b>
% endif
</div>
<div>
% if object.activity_note:
<i>${object.activity_note | safe}</i>
% endif
</div>
<br/>
<div style="margin: 16px 0px 16px 0px;">
<a href="${object.full_url}"
style="background-color: #875A7B; padding: 20px 30px 20px 30px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;">
Upload the requested document
</a>
</div>
</center><br/>
Please provide us with the missing document before the link expires (planned on ${object.date_deadline}).
% if user and user.signature:
<br/>
${user.signature | safe}
<br/>
% endif
</div>
</td></tr>
<tr><td style="text-align:center;">
<hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;"/>
</td></tr>
</table>
</td>
</tr>
<!-- FOOTER -->
<tr>
<td align="center" style="min-width: 590px;">
<table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;">
<tr><td valign="middle" align="left">
${object.create_uid.company_id.name}
</td></tr>
<tr><td valign="middle" align="left" style="opacity: 0.7;">
${object.create_uid.company_id.phone}
% if object.create_uid.company_id.email
| <a href="'mailto:%s' % ${object.create_uid.company_id.email}" style="text-decoration:none; color: #454748;">${object.create_uid.company_id.email}</a>
% endif
% if object.create_uid.company_id.website
| <a href="'%s' % ${object.create_uid.company_id.website}" style="text-decoration:none; color: #454748;">
${object.create_uid.company_id.website}
</a>
% endif
</td></tr>
</table>
</td>
</tr>
</tbody>
</table>
</td></tr>
<!-- POWERED BY -->
<tr><td align="center" style="min-width: 590px;">
<table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;">
<tr><td style="text-align: center; font-size: 13px;">
% if object.date_deadline:
This link expires on <b>${object.date_deadline}.</b><br/>
% endif
Powered by <a target="_blank" href="https://www.odoo.com/page/documents" style="color: #875A7B;">Odoo Documents</a>
</td></tr>
</table>
</td></tr>
</table>
</field>
<field name="lang">${object.owner_id.lang}</field>
<field name="auto_delete" eval="True"/>
</record>
</data>
</odoo>