mail_templates_mailgateway.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <data>
  4. <template id="message_notification_limit_email">
  5. <p>Dear Sender,</p>
  6. <p>
  7. The message below could not be accepted by the address <t t-esc="email"/> because you have
  8. contacted it too many times in the last few minutes.
  9. <br/>
  10. Please try again later.
  11. </p>
  12. <p>Kind Regards</p>
  13. </template>
  14. <template id="mail_bounce_catchall">
  15. <div>
  16. <p>Hello <t t-esc="message['email_from']"/>,</p>
  17. <p>The email sent to <t t-esc="message['to']"/> cannot be processed. This address
  18. is used to collect replies and should not be used to directly contact <t t-esc="res_company.name"/>.</p>
  19. <p>Please contact us instead using <a t-att-href="'mailto:%s' % res_company.email"><t t-esc="res_company.email"/></a></p>
  20. <p>Regards,</p>
  21. <p>The <t t-esc="res_company.name"/> team.</p>
  22. </div>
  23. <blockquote><t t-esc="message['body']"/></blockquote>
  24. </template>
  25. <!-- Mail bounce alias mail template -->
  26. <template id="mail_bounce_alias_security">
  27. <div><t t-out="body"/></div>
  28. <blockquote><t t-out="message['body']"/></blockquote>
  29. </template>
  30. </data>
  31. </odoo>