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.

21 lines
829 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <!-- Add sendgrid preview in compose mail wizard -->
  4. <record model="ir.ui.view" id="email_compose_message_sendgrid_form">
  5. <field name="name">mail.compose.sendgrid.form</field>
  6. <field name="model">mail.compose.message</field>
  7. <field name="inherit_id" ref="mail.email_compose_message_wizard_form"/>
  8. <field name="arch" type="xml">
  9. <field name="body" position="replace">
  10. <notebook>
  11. <page string="Html">
  12. <field name="body"/>
  13. </page>
  14. <page string="SendGrid Preview">
  15. <field name="body_sendgrid"/>
  16. </page>
  17. </notebook>
  18. </field>
  19. </field>
  20. </record>
  21. </odoo>