Search 1.9 billion lines of Odoo code on GitHub

email_custom_formats

Author: Trey (www.trey.es)
License: no license
Branch: 8.0
Repository: AcruxLab/trey-addons
Dependencies: auth_signup, mail, portal, sale, and website
Languages: Markdown (50, 19.3%), PO File (70, 27.0%), Python (78, 30.1%), and XML (61, 23.6%)
Other repositories: DudhatShivam/trey-addons, HarshalBhoir/trey-addons, OdooBulgaria/trey-addons, RL-OtherApps/trey-addons, TheCloneMaster/trey-addons, Ubaid-UrRehman/trey-addons, WebMoz/trey-addons, acysos/trey-addons, aitmlouk/trey-addons, alanljj/trey-addons, anasallaham/trey-addons, anodino-dev/trey-addons, blueoceandevops/trey-addons, bouet/trey-addons, carlos-domatix/trey-addons, durvillo/trey-addons, gitstalker/trey-addons, grottas/trey-addons, invitu/trey-addons, judaa11/trey-addons, khaledhathout/trey-addons, kit9/trey-addons, marionumza/trey-addons, nguyenductamlhp/trey-addons, nicolasramos/trey-addons, oihane/trey-addons, one2pret/trey-addons, systechsolutions/trey-addons, tate11/trey-addons, treytux/trey-addons, vanthaiunghoa/trey-addons, vidtsin/trey-addons, and yasmanycastillo/trey-addons

<h3>Module email custom templates</h3> <p>This module allows to customize email templates.</p> <p>Templates that need to be replaced in customized modules (not included in this module).</p> <p>``` Sale Order: <record id="sale.email_template_edi_sale" model="email.template"> <field name="name">Sales Order - Send by Email (Custom)</field> <field name="body_html"> &lt;![CDATA[ Contenido a reemplazar sale ]]&gt; </field> </record></p> <p><record id="portal_sale.email_template_edi_sale" model="email.template"> <field name="name">Sales Order - Send by Email (Portal Custom)</field> <field name="body_html"> &lt;![CDATA[ Contenido a reemplazar portal sale ]]&gt; </field> </record></p> <p>Invoice: <record id="account.email_template_edi_invoice" model="email.template"> <field name="name">Invoice - Send by Email (Custom)</field> <field name="body_html"> &lt;![CDATA[ Contenido a reemplazar invoice ]]&gt; </field> </record></p> <p><record id="portal_sale.email_template_edi_invoice" model="email.template"> <field name="name">Invoice - Send by Email (Portal Custom)</field> <field name="body_html"> &lt;![CDATA[ Contenido a reemplazar portal invoice ]]&gt; </field> </record></p> <p>Website: <record id="auth_signup.reset_password_email" model="email.template"> <field name="name">Reset Password (Custom)</field> <field name="body_html"> &lt;![CDATA[ Contenido a reemplazar reset password ]]&gt; </field> </record></p> <p><record id="auth_signup.set_password_email" model="email.template"> <field name="name">Odoo Enterprise Connection (Custom)</field> <field name="body_html"> &lt;![CDATA[ Contenido a reemplazar set password ]]&gt; </field> </record></p> <p><template id="email_formats_portal.wizard_user_subject"> Contenido a reemplazar (asunto datos cuenta) </template> <template id="email_formats_portal.wizard_user_body_html"> Contenido a reemplazar (datos cuenta) </template></p> <p>```</p>