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.
 
 
 
 
 

20 lines
912 B

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<data noupdate="1">
<!-- The template used to send the notification mail to the person-->
<record id="cron_error_mail" model="mail.template">
<field name="name">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>