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.

26 lines
1.1 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data noupdate="0">
  4. <record id="email_template_autobackup_error_noificaiton" model="email.template">
  5. <field name="name">Auto Backup Error notification</field>
  6. <field name="email_from">auto_backup@${object.name}</field>
  7. <field name="subject">Backup from ${object.host} - (${object.sftpip}) failed</field>
  8. <field name="email_to">${object.emailtonotify}</field>
  9. <field name="model_id" ref="auto_backup.model_db_backup" />
  10. <field name="body_html">
  11. <![CDATA[
  12. <p>Dear,</p>
  13. <p>The backup for the server ${object.host} (IP: ${object.sftpip}) failed.</p>
  14. <p>Please check the following details:</p>
  15. <p>IP address SFTP server: ${object.sftpip}</p>
  16. <p>Username: ${object.sftpusername}</p>
  17. <p>Password: ${object.sftppassword}</p>
  18. <p>Error details: ${object.lasterrorlog}</p>
  19. <p>With kind regards</p>
  20. ]]></field>
  21. </record>
  22. </data>
  23. </openerp>