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.
19 lines
867 B
19 lines
867 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<data noupdate="1">
|
|
<!-- ir cron fail mail template -->
|
|
<record id="mail_template_cron_error" model="mail.template">
|
|
<field name="name">Mail: Cron Action Error</field>
|
|
<field name="model_id" ref="cron_failure_notification.model_ir_cron"/>
|
|
<field name="subject">{{ object.name }} Cron Failed</field>
|
|
<field name="email_to">{{ ctx[ 'admin_mail' ] }}</field>
|
|
<field name="report_template" ref="cron_fail_pdf_report"/>
|
|
<field name="body_html" type="html">
|
|
<p>Dear Admin,</p>
|
|
<p>Here is attaching failures from scheduled cron jobs on our
|
|
server, so please quickly take an action for this.
|
|
</p><p>Thank You.</p>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|