diff --git a/direct_send_email_template/.idea/direct_send_email_template.iml b/direct_send_email_template/.idea/direct_send_email_template.iml new file mode 100644 index 000000000..d0876a78d --- /dev/null +++ b/direct_send_email_template/.idea/direct_send_email_template.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/direct_send_email_template/.idea/inspectionProfiles/Project_Default.xml b/direct_send_email_template/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 000000000..665946b6d --- /dev/null +++ b/direct_send_email_template/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,88 @@ + + + + \ No newline at end of file diff --git a/direct_send_email_template/.idea/inspectionProfiles/profiles_settings.xml b/direct_send_email_template/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 000000000..105ce2da2 --- /dev/null +++ b/direct_send_email_template/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/direct_send_email_template/.idea/misc.xml b/direct_send_email_template/.idea/misc.xml new file mode 100644 index 000000000..9077d3ed6 --- /dev/null +++ b/direct_send_email_template/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/direct_send_email_template/.idea/modules.xml b/direct_send_email_template/.idea/modules.xml new file mode 100644 index 000000000..a7ffd419e --- /dev/null +++ b/direct_send_email_template/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/direct_send_email_template/.idea/workspace.xml b/direct_send_email_template/.idea/workspace.xml new file mode 100644 index 000000000..99ecd1438 --- /dev/null +++ b/direct_send_email_template/.idea/workspace.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + 1733733551718 + + + + \ No newline at end of file diff --git a/direct_send_email_template/README.rst b/direct_send_email_template/README.rst new file mode 100755 index 000000000..04736298f --- /dev/null +++ b/direct_send_email_template/README.rst @@ -0,0 +1,49 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Direct Send Email +================= +This module helps you to send the emails directly to the Customers/Vendors. + +Configuration +============= +* No additional configuration is needed. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Lesser General Public License, v3.0 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +* Developers: (V18) Aysha Shalin, + (V17) Jumana Haseen, + (V16) Gion D + Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/direct_send_email_template/__init__.py b/direct_send_email_template/__init__.py new file mode 100644 index 000000000..b62fed816 --- /dev/null +++ b/direct_send_email_template/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC +# LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/direct_send_email_template/__manifest__.py b/direct_send_email_template/__manifest__.py new file mode 100644 index 000000000..a11fd525b --- /dev/null +++ b/direct_send_email_template/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC +# LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################## +{ + 'name': "Direct Send Email", + 'version': '18.0.1.0.0', + "category": "Sales", + 'summary': """Send an email directly to the Customers/Vendors.""", + 'description': """This module helps you to send the emails by using the + default email templates directly to the Customers/Vendors.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'sale_management', 'purchase', 'account'], + 'data': [ + 'views/res_config_settings_views.xml', + 'views/sale_order_views.xml', + 'views/account_move_views.xml', + 'views/purchase_order_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': "LGPL-3", + 'installable': True, + 'auto_install': False, + 'application': False +} diff --git a/direct_send_email_template/doc/RELEASE_NOTES.md b/direct_send_email_template/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..1fb7d7088 --- /dev/null +++ b/direct_send_email_template/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 09.10.2024 +#### Version 18.0.1.0.0 +##### ADD +- Initial commit for Direct Send Email diff --git a/direct_send_email_template/models/__init__.py b/direct_send_email_template/models/__init__.py new file mode 100644 index 000000000..9b8d6b1bb --- /dev/null +++ b/direct_send_email_template/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC +# LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import account_move +from . import purchase_order +from . import res_config_settings +from . import sale_order diff --git a/direct_send_email_template/models/account_move.py b/direct_send_email_template/models/account_move.py new file mode 100644 index 000000000..921f67f8a --- /dev/null +++ b/direct_send_email_template/models/account_move.py @@ -0,0 +1,94 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC +# LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models, _ +from odoo import exceptions + + +class AccountMove(models.Model): + """ Inheriting the account model to add the fields and direct send the + email button""" + _inherit = 'account.move' + _description = 'Account move' + + direct_send_inv = fields.Boolean( + "Direct Send Invoice", + help="Direct Send Customer Invoice by Mail.") + direct_send_crd = fields.Boolean( + "Direct Send Credit Note", + help="Direct Send Credit Note by Mail.") + direct_send_bill = fields.Boolean( + "Direct Send Bill", + help="Direct Send Vendor Bill by Mail.") + direct_send_ref = fields.Boolean( + "Direct Send Refund", + help="Direct Send Refund by Mail.") + + def action_direct_send_account(self): + """Sending a direct send accounts email to the customer.""" + is_direct_send_email_account = self.env[ + 'ir.config_parameter'].sudo().get_param( + 'direct_send_email_template.is_direct_send_email_account') + if is_direct_send_email_account: + move_type = { + 'out_invoice': { + 'template_key': 'direct_send_mailtemplate_inv', + 'field_key': 'direct_send_inv', + 'error_msg': _( + "Template not defined for Customer Invoice."), + }, + 'out_refund': { + 'template_key': 'direct_send_mailtemplate_credit', + 'field_key': 'direct_send_crd', + 'error_msg': _( + "Template not defined for Customer Credit Note."), + }, + 'in_invoice': { + 'template_key': 'direct_send_mailtemplate_bill', + 'field_key': 'direct_send_bill', + 'error_msg': _("Template not defined for Vendor Bill."), + }, + 'in_refund': { + 'template_key': 'direct_send_mailtemplate_refund', + 'field_key': 'direct_send_ref', + 'error_msg': _( + "Template not defined for Vendor Credit Note."), + } + } + if self.state == 'posted': + if self.move_type in move_type: + template = int( + self.env['ir.config_parameter'].sudo().get_param( + 'direct_send_email_template.' + + move_type[self.move_type]['template_key'])) + if template: + template_id = self.env['mail.template'].browse(template) + self.with_context( + force_send=True).message_post_with_source( + template_id) + self.write( + {move_type[self.move_type]['field_key']: True}) + else: + raise exceptions.ValidationError( + move_type[self.move_type]['error_msg']) + else: + raise exceptions.ValidationError( + _("Not Configured Direct Send Email Setting")) diff --git a/direct_send_email_template/models/purchase_order.py b/direct_send_email_template/models/purchase_order.py new file mode 100644 index 000000000..f4367c449 --- /dev/null +++ b/direct_send_email_template/models/purchase_order.py @@ -0,0 +1,69 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC +# LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models, _ +from odoo import exceptions + + +class PurchaseOrder(models.Model): + """ Inheriting the purchase order model to add the fields and direct send + the email button. """ + _inherit = 'purchase.order' + _description = 'purchase order' + + direct_send_rfq = fields.Boolean( + "Direct Send Request for Quotation", + help="Direct Send Request for Quotation by Mail.") + direct_send_po = fields.Boolean( + "Direct Send Purchase Order", + help="Direct Send Purchase Order by Mail.") + + def action_direct_send_purchase(self): + """ Sending a direct send purchase email to the customer """ + is_direct_send_email_purchase = self.env[ + 'ir.config_parameter'].sudo().get_param( + 'direct_send_email_template.is_direct_send_email_purchase') + if is_direct_send_email_purchase: + purchase_state = { + 'draft': { + 'template_key': 'direct_send_mailtemplate_prfq', + 'field_key': 'direct_send_rfq', + 'error_msg': _("Template not defined for Request for Quotation."), + }, + 'purchase': { + 'template_key': 'direct_send_mailtemplate_po', + 'field_key': 'direct_send_po', + 'error_msg': _("Template not defined For Purchase Order."), + }, + } + if self.state in purchase_state: + template = int(self.env['ir.config_parameter'].sudo().get_param( + 'direct_send_email_template.' + purchase_state[self.state]['template_key'])) + if template: + template_id = self.env['mail.template'].browse(template) + self.with_context(force_send=True).message_post_with_source(template_id) + self.write({purchase_state[self.state]['field_key']: True}) + else: + raise exceptions.ValidationError(purchase_state[self.state]['error_msg']) + else: + raise exceptions.ValidationError( + _("Not Configured Direct Send Email Setting") + ) diff --git a/direct_send_email_template/models/res_config_settings.py b/direct_send_email_template/models/res_config_settings.py new file mode 100644 index 000000000..e67081b84 --- /dev/null +++ b/direct_send_email_template/models/res_config_settings.py @@ -0,0 +1,82 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC +# LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################## +from odoo import fields, models + + +class ResConfig(models.TransientModel): + """ Inherit the base settings to add a direct send email + configuration fields. """ + _inherit = 'res.config.settings' + + is_direct_send_email_sale = fields.Boolean( + string="Direct Send Email Sale", + help="Enable to send direct email for sale/quotations.", + config_parameter="direct_send_email_template.is_direct_send_email_sale") + direct_send_mailtemplate_sq = fields.Many2one( + comodel_name='mail.template', string='Quotation Email Template', + domain="[('model', '=', 'sale.order')]", + help='Email Template for Sale Quotation.', + config_parameter="direct_send_email_template.direct_send_mailtemplate_sq") + direct_send_mailtemplate_so = fields.Many2one( + comodel_name='mail.template', string='Sales Order Email Template', + domain="[('model', '=', 'sale.order')]", + help='Email Template for Sale Order.', + config_parameter="direct_send_email_template.direct_send_mailtemplate_so") + is_direct_send_email_purchase = fields.Boolean( + string="Direct Send Email Purchase", + help="Enable to send direct email for purchase/rfqs.", + config_parameter="direct_send_email_template.is_direct_send_email_purchase") + direct_send_mailtemplate_po = fields.Many2one( + comodel_name='mail.template', string='Purchase Order Email Template', + domain="[('model', '=', 'purchase.order')]", + help='Email Template for Purchase Order.', + config_parameter="direct_send_email_template.direct_send_mailtemplate_po") + direct_send_mailtemplate_prfq = fields.Many2one( + comodel_name='mail.template', + string='Request for Quotation Email Template', + domain="[('model', '=', 'purchase.order')]", + help='Email Template for Request For Quotation.', + config_parameter="direct_send_email_template.direct_send_mailtemplate_prfq") + is_direct_send_email_account = fields.Boolean( + string="Direct Send Email Invoice.", + help="Enable to send direct email for invoices.", + config_parameter="direct_send_email_template.is_direct_send_email_account") + direct_send_mailtemplate_inv = fields.Many2one( + comodel_name='mail.template', string='Invoice Email Template', + domain="[('model', '=', 'account.move')]", + help='Email Template for Customer Invoice.', + config_parameter="direct_send_email_template.direct_send_mailtemplate_inv") + direct_send_mailtemplate_credit = fields.Many2one( + comodel_name='mail.template', string='Credit note Email Template', + domain="[('model', '=', 'account.move')]", + help='Email Template for Customer Credit Note.', + config_parameter="direct_send_email_template.direct_send_mailtemplate_credit") + direct_send_mailtemplate_bill = fields.Many2one( + comodel_name='mail.template', string='Bills Email Template', + domain="[('model', '=', 'account.move')]", + help='Email Template for Vendor Bill.', + config_parameter="direct_send_email_template.direct_send_mailtemplate_bill") + direct_send_mailtemplate_refund = fields.Many2one( + comodel_name='mail.template', string='Refund Email Template', + domain="[('model', '=', 'account.move')]", + help='Email Template for Vendor Refund.', + config_parameter="direct_send_email_template.direct_send_mailtemplate_refund") diff --git a/direct_send_email_template/models/sale_order.py b/direct_send_email_template/models/sale_order.py new file mode 100644 index 000000000..676bcf377 --- /dev/null +++ b/direct_send_email_template/models/sale_order.py @@ -0,0 +1,66 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC +# LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################## +from odoo import fields, models, _ +from odoo import exceptions + + +class SaleOrder(models.Model): + """ Inheriting the sale order model to add the fields and direct + send the email button. """ + _inherit = 'sale.order' + _description = 'sale order' + + direct_send_quo = fields.Boolean( + "Direct Send Quotation", help="Direct Send Quotation by Mail.") + direct_send_so = fields.Boolean( + "Direct Send sale Order", help="Direct Send Sale Order by Mail.") + + def action_direct_send_sale(self): + """ Sending a direct sales email to the customer """ + is_direct_send_email_sale = self.env[ + 'ir.config_parameter'].sudo().get_param( + 'direct_send_email_template.is_direct_send_email_sale') + if is_direct_send_email_sale: + sale_state = { + 'draft': { + 'template_key': 'direct_send_mailtemplate_sq', + 'field_key': 'direct_send_quo', + 'error_msg': _("Template not defined for Sale Order Quotation."), + }, + 'sale': { + 'template_key': 'direct_send_mailtemplate_so', + 'field_key': 'direct_send_so', + 'error_msg': _("Template not defined for Sale Order Confirmation."), + }, + } + if self.state in sale_state: + template = int(self.env['ir.config_parameter'].sudo().get_param( + 'direct_send_email_template.' + sale_state[self.state]['template_key'])) + if template: + template_id = self.env['mail.template'].browse(template) + self.with_context(force_send=True).message_post_with_source(template_id) + self.write({sale_state[self.state]['field_key']: True}) + else: + raise exceptions.ValidationError(sale_state[self.state]['error_msg']) + else: + raise exceptions.ValidationError( + _("Not Configured Direct Send Email Setting")) diff --git a/direct_send_email_template/static/description/assets/cybro-icon.png b/direct_send_email_template/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/direct_send_email_template/static/description/assets/cybro-icon.png differ diff --git a/direct_send_email_template/static/description/assets/cybro-odoo.png b/direct_send_email_template/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/direct_send_email_template/static/description/assets/cybro-odoo.png differ diff --git a/direct_send_email_template/static/description/assets/h2.png b/direct_send_email_template/static/description/assets/h2.png new file mode 100644 index 000000000..0bfc4707d Binary files /dev/null and b/direct_send_email_template/static/description/assets/h2.png differ diff --git a/direct_send_email_template/static/description/assets/icons/arrows-repeat.svg b/direct_send_email_template/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/banner-1.png b/direct_send_email_template/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/banner-1.png differ diff --git a/direct_send_email_template/static/description/assets/icons/banner-2.svg b/direct_send_email_template/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/banner-bg.png b/direct_send_email_template/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/banner-bg.png differ diff --git a/direct_send_email_template/static/description/assets/icons/banner-bg.svg b/direct_send_email_template/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/banner-call.svg b/direct_send_email_template/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/banner-mail.svg b/direct_send_email_template/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/banner-pattern.svg b/direct_send_email_template/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/banner-promo.svg b/direct_send_email_template/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/brand-pair.svg b/direct_send_email_template/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/check.png b/direct_send_email_template/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/check.png differ diff --git a/direct_send_email_template/static/description/assets/icons/chevron.png b/direct_send_email_template/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/chevron.png differ diff --git a/direct_send_email_template/static/description/assets/icons/close-icon.svg b/direct_send_email_template/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/cogs.png b/direct_send_email_template/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/cogs.png differ diff --git a/direct_send_email_template/static/description/assets/icons/collabarate-icon.svg b/direct_send_email_template/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/direct_send_email_template/static/description/assets/icons/consultation.png b/direct_send_email_template/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/consultation.png differ diff --git a/direct_send_email_template/static/description/assets/icons/cybro-logo.png b/direct_send_email_template/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/cybro-logo.png differ diff --git a/direct_send_email_template/static/description/assets/icons/down.svg b/direct_send_email_template/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/direct_send_email_template/static/description/assets/icons/ecom-black.png b/direct_send_email_template/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/ecom-black.png differ diff --git a/direct_send_email_template/static/description/assets/icons/education-black.png b/direct_send_email_template/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/education-black.png differ diff --git a/direct_send_email_template/static/description/assets/icons/faq.png b/direct_send_email_template/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/faq.png differ diff --git a/direct_send_email_template/static/description/assets/icons/feature-icon.svg b/direct_send_email_template/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/feature.png b/direct_send_email_template/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/feature.png differ diff --git a/direct_send_email_template/static/description/assets/icons/gear.svg b/direct_send_email_template/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/hero.gif b/direct_send_email_template/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..380654dfe Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/hero.gif differ diff --git a/direct_send_email_template/static/description/assets/icons/hire-odoo.svg b/direct_send_email_template/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/hotel-black.png b/direct_send_email_template/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/hotel-black.png differ diff --git a/direct_send_email_template/static/description/assets/icons/license.png b/direct_send_email_template/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/license.png differ diff --git a/direct_send_email_template/static/description/assets/icons/life-ring-icon.svg b/direct_send_email_template/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/lifebuoy.png b/direct_send_email_template/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/lifebuoy.png differ diff --git a/direct_send_email_template/static/description/assets/icons/mail.svg b/direct_send_email_template/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/direct_send_email_template/static/description/assets/icons/manufacturing-black.png b/direct_send_email_template/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/manufacturing-black.png differ diff --git a/direct_send_email_template/static/description/assets/icons/notes.png b/direct_send_email_template/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/notes.png differ diff --git a/direct_send_email_template/static/description/assets/icons/notification icon.svg b/direct_send_email_template/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/odoo-consultancy.svg b/direct_send_email_template/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/direct_send_email_template/static/description/assets/icons/odoo-licencing.svg b/direct_send_email_template/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/direct_send_email_template/static/description/assets/icons/odoo-logo.png b/direct_send_email_template/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/odoo-logo.png differ diff --git a/direct_send_email_template/static/description/assets/icons/patter.svg b/direct_send_email_template/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/pattern1.png b/direct_send_email_template/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/pattern1.png differ diff --git a/direct_send_email_template/static/description/assets/icons/pos-black.png b/direct_send_email_template/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/pos-black.png differ diff --git a/direct_send_email_template/static/description/assets/icons/puzzle-piece-icon.svg b/direct_send_email_template/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/puzzle.png b/direct_send_email_template/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/puzzle.png differ diff --git a/direct_send_email_template/static/description/assets/icons/replace-icon.svg b/direct_send_email_template/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/restaurant-black.png b/direct_send_email_template/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/restaurant-black.png differ diff --git a/direct_send_email_template/static/description/assets/icons/screenshot-main.png b/direct_send_email_template/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/screenshot-main.png differ diff --git a/direct_send_email_template/static/description/assets/icons/screenshot.png b/direct_send_email_template/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/screenshot.png differ diff --git a/direct_send_email_template/static/description/assets/icons/service-black.png b/direct_send_email_template/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/service-black.png differ diff --git a/direct_send_email_template/static/description/assets/icons/skype-fill.svg b/direct_send_email_template/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/skype.png b/direct_send_email_template/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/skype.png differ diff --git a/direct_send_email_template/static/description/assets/icons/skype.svg b/direct_send_email_template/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/direct_send_email_template/static/description/assets/icons/star-1.svg b/direct_send_email_template/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/star-2.svg b/direct_send_email_template/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/support.png b/direct_send_email_template/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/support.png differ diff --git a/direct_send_email_template/static/description/assets/icons/test-1 - Copy.png b/direct_send_email_template/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/test-1 - Copy.png differ diff --git a/direct_send_email_template/static/description/assets/icons/test-1.png b/direct_send_email_template/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/test-1.png differ diff --git a/direct_send_email_template/static/description/assets/icons/test-2.png b/direct_send_email_template/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/test-2.png differ diff --git a/direct_send_email_template/static/description/assets/icons/trading-black.png b/direct_send_email_template/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/trading-black.png differ diff --git a/direct_send_email_template/static/description/assets/icons/training.png b/direct_send_email_template/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/training.png differ diff --git a/direct_send_email_template/static/description/assets/icons/translate.svg b/direct_send_email_template/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/update.png b/direct_send_email_template/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/update.png differ diff --git a/direct_send_email_template/static/description/assets/icons/user.png b/direct_send_email_template/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/user.png differ diff --git a/direct_send_email_template/static/description/assets/icons/video.png b/direct_send_email_template/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/video.png differ diff --git a/direct_send_email_template/static/description/assets/icons/whatsapp.png b/direct_send_email_template/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/whatsapp.png differ diff --git a/direct_send_email_template/static/description/assets/icons/wrench-icon.svg b/direct_send_email_template/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/direct_send_email_template/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/direct_send_email_template/static/description/assets/icons/wrench.png b/direct_send_email_template/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/direct_send_email_template/static/description/assets/icons/wrench.png differ diff --git a/direct_send_email_template/static/description/assets/modules/4.png b/direct_send_email_template/static/description/assets/modules/4.png new file mode 100644 index 000000000..3a3ee8e83 Binary files /dev/null and b/direct_send_email_template/static/description/assets/modules/4.png differ diff --git a/direct_send_email_template/static/description/assets/modules/6.png b/direct_send_email_template/static/description/assets/modules/6.png new file mode 100644 index 000000000..29c325870 Binary files /dev/null and b/direct_send_email_template/static/description/assets/modules/6.png differ diff --git a/direct_send_email_template/static/description/assets/modules/Advanced-Sales-Reports.png b/direct_send_email_template/static/description/assets/modules/Advanced-Sales-Reports.png new file mode 100644 index 000000000..61f40e7af Binary files /dev/null and b/direct_send_email_template/static/description/assets/modules/Advanced-Sales-Reports.png differ diff --git a/direct_send_email_template/static/description/assets/modules/Multiple-Warehouses-in-Sale-Order-Lines.png b/direct_send_email_template/static/description/assets/modules/Multiple-Warehouses-in-Sale-Order-Lines.png new file mode 100644 index 000000000..60e617f0f Binary files /dev/null and b/direct_send_email_template/static/description/assets/modules/Multiple-Warehouses-in-Sale-Order-Lines.png differ diff --git a/direct_send_email_template/static/description/assets/modules/Sale-Purchase-Orders-from-Products.png b/direct_send_email_template/static/description/assets/modules/Sale-Purchase-Orders-from-Products.png new file mode 100644 index 000000000..56a998837 Binary files /dev/null and b/direct_send_email_template/static/description/assets/modules/Sale-Purchase-Orders-from-Products.png differ diff --git a/direct_send_email_template/static/description/assets/modules/banner.png b/direct_send_email_template/static/description/assets/modules/banner.png new file mode 100644 index 000000000..3339ef722 Binary files /dev/null and b/direct_send_email_template/static/description/assets/modules/banner.png differ diff --git a/direct_send_email_template/static/description/assets/screenshots/1.png b/direct_send_email_template/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..7fc8906c3 Binary files /dev/null and b/direct_send_email_template/static/description/assets/screenshots/1.png differ diff --git a/direct_send_email_template/static/description/assets/screenshots/2.png b/direct_send_email_template/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..ac4321bd1 Binary files /dev/null and b/direct_send_email_template/static/description/assets/screenshots/2.png differ diff --git a/direct_send_email_template/static/description/assets/screenshots/3.png b/direct_send_email_template/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..c3cf5a700 Binary files /dev/null and b/direct_send_email_template/static/description/assets/screenshots/3.png differ diff --git a/direct_send_email_template/static/description/assets/screenshots/4.png b/direct_send_email_template/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..811776c9f Binary files /dev/null and b/direct_send_email_template/static/description/assets/screenshots/4.png differ diff --git a/direct_send_email_template/static/description/assets/screenshots/5.png b/direct_send_email_template/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..f4cf03f30 Binary files /dev/null and b/direct_send_email_template/static/description/assets/screenshots/5.png differ diff --git a/direct_send_email_template/static/description/assets/screenshots/7.png b/direct_send_email_template/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..4c7d309ad Binary files /dev/null and b/direct_send_email_template/static/description/assets/screenshots/7.png differ diff --git a/direct_send_email_template/static/description/assets/screenshots/8.png b/direct_send_email_template/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..def03fcce Binary files /dev/null and b/direct_send_email_template/static/description/assets/screenshots/8.png differ diff --git a/direct_send_email_template/static/description/assets/screenshots/9.png b/direct_send_email_template/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..5289b2778 Binary files /dev/null and b/direct_send_email_template/static/description/assets/screenshots/9.png differ diff --git a/direct_send_email_template/static/description/assets/screenshots/hero.gif b/direct_send_email_template/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..3a8f039be Binary files /dev/null and b/direct_send_email_template/static/description/assets/screenshots/hero.gif differ diff --git a/direct_send_email_template/static/description/assets/y18.jpg b/direct_send_email_template/static/description/assets/y18.jpg new file mode 100644 index 000000000..eea1714f2 Binary files /dev/null and b/direct_send_email_template/static/description/assets/y18.jpg differ diff --git a/direct_send_email_template/static/description/banner.png b/direct_send_email_template/static/description/banner.png new file mode 100644 index 000000000..f1c803af8 Binary files /dev/null and b/direct_send_email_template/static/description/banner.png differ diff --git a/direct_send_email_template/static/description/icon.png b/direct_send_email_template/static/description/icon.png new file mode 100644 index 000000000..6818f4dee Binary files /dev/null and b/direct_send_email_template/static/description/icon.png differ diff --git a/direct_send_email_template/static/description/index.html b/direct_send_email_template/static/description/index.html new file mode 100644 index 000000000..8e37323c4 --- /dev/null +++ b/direct_send_email_template/static/description/index.html @@ -0,0 +1,981 @@ + + + + + + Direct Send Email + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+
+

+ Send an email directly to the Customer/Vendor. +

+

Direct Send Email +

+
+
+ +
+ +
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+

Key + Highlights

+
+
+
+
+ +
+
+ Direct Mailing of Sale Quotation/Sale Order. +
+
+
+
+
+
+ +
+
+ Direct Mailing of Invoice, Credit note, Bill and Refund. +
+
+
+
+
+
+ +
+
+ Direct Mailing of Request for Quotation and Purchase Order. +
+
+
+
+
+ +
+
+
+ Direct Send Email +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ Set default + + Sale email template +

+
+
+

+ Go to Sales --> Configuration --> Settings --> Direct Send Email + and Select the Templates for Quotation and Sale Order. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Direct Send in + + Sales +

+
+
+

+ By clicking the "Direct Send" button, the + Customer will Receive an Email with the Default Sales Template. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Email + Sent +

+
+
+

+ Email Sent to Customer/Vendor based on Default Email Template. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Set Default + + Purchase Email Template +

+
+
+

+ Go to Purchase --> Configuration --> Settings -> Enable "Direct Send Email" + and Select Email Templates for Request for Quotation and Purchase Order. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Direct Send in + + Purchase +

+
+
+

+ By clicking the "Direct Send" Button, the + Customer will Receive an Email with the + Default Purchase Template. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Set default + + Invoice Email Template +

+
+
+

+ Go to Invoicing --> Configuration --> Settings -> Enable "Direct Send Email" + and Select Email Templates for Customer Invoice, Credit Note, Vendor Bill and Refund. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Direct Send + + in Invoice +

+
+
+

+ By clicking the "Direct Send" button, the + Customer will Receive an Email with the + Default Invoice Template. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Email + + Sent +

+
+
+

+ Email Sent to Customer/Vendor based on + Default Email Template. +

+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+

+ Send Email from Sales, Purchase and Invoices to Customer/Vendors.

+
+
+
+
+
+
+
+ +
+

+ Available in both Community and Enterprise.

+
+
+
+
+
+
+ +
+
+

+ Latest Release 18.0.1.0.0 +

+ + 9th December, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ +
+

+ Our Services

+
+ + + +
+
+ .... +
+
+ + +
+ +
+
+ + + + + + diff --git a/direct_send_email_template/views/account_move_views.xml b/direct_send_email_template/views/account_move_views.xml new file mode 100644 index 000000000..a2c20ae8d --- /dev/null +++ b/direct_send_email_template/views/account_move_views.xml @@ -0,0 +1,39 @@ + + + + + account.move.view.form.inherit.direct.send.email.template + account.move + + + +