diff --git a/brevo_connector/README.rst b/brevo_connector/README.rst new file mode 100755 index 000000000..655199f08 --- /dev/null +++ b/brevo_connector/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Brevo Connector +=============== +This module allows users to view status of mails. + +Configuration +============= +* Create a account in Brevo. +* Create a new webhook and enable triggering statuses. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developers: (V17)Anfas Faisal K, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@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/brevo_connector/__init__.py b/brevo_connector/__init__.py new file mode 100755 index 000000000..b2cc6599c --- /dev/null +++ b/brevo_connector/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import controllers +from . import models diff --git a/brevo_connector/__manifest__.py b/brevo_connector/__manifest__.py new file mode 100755 index 000000000..b1266a98f --- /dev/null +++ b/brevo_connector/__manifest__.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +{ + 'name': 'Brevo Connector', + 'version': '17.0.1.0.0', + 'category': 'Discuss', + 'summary': 'Allows to view the status of mail send by Odoo by connecting ' + 'to Brevo.', + 'description': 'This module provides the ability to track the Status of ' + 'Emails sent from Odoo to Another Email Address.', + 'author': 'Cybrosys Techno solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'mail'], + 'data': ['views/mail_message_views.xml'], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/brevo_connector/controllers/__init__.py b/brevo_connector/controllers/__init__.py new file mode 100755 index 000000000..55d48b450 --- /dev/null +++ b/brevo_connector/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import brevo_connector diff --git a/brevo_connector/controllers/brevo_connector.py b/brevo_connector/controllers/brevo_connector.py new file mode 100755 index 000000000..0fa3380a0 --- /dev/null +++ b/brevo_connector/controllers/brevo_connector.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +import json +import logging +from odoo import http +from odoo.http import request +_logger = logging.getLogger(__name__) + + +class BrevoRequest(http.Controller): + """Controller for setting routes. Pass all statuses of mail to odoo""" + + @http.route('/brevo', type='json', auth='public', methods=['POST']) + def sent(self): + """Function for getting statuses into odoo""" + data = json.loads(request.httprequest.data) + message_id = request.env['mail.message'].sudo().search( + [('message_id', 'ilike', data['message-id'])], limit=1) + if message_id: + message_id.write({ + 'status': data.get('event'), + 'receiver': data.get('email'), + }) + if data.get('event') == 'click': + data.get('link') + else: + return 'ok', 200 diff --git a/brevo_connector/doc/RELEASE_NOTES.md b/brevo_connector/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..da334f442 --- /dev/null +++ b/brevo_connector/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 23.09.2024 +#### Version 17.0.1.0.0 +#### ADD + +- Initial commit for Brevo Connector diff --git a/brevo_connector/models/__init__.py b/brevo_connector/models/__init__.py new file mode 100755 index 000000000..876ef6f6d --- /dev/null +++ b/brevo_connector/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import mail_massage diff --git a/brevo_connector/models/mail_massage.py b/brevo_connector/models/mail_massage.py new file mode 100755 index 000000000..8e1cd686f --- /dev/null +++ b/brevo_connector/models/mail_massage.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class MailMessage(models.Model): + """ Inherit mail_message model for adding status and to fields.""" + _inherit = 'mail.message' + + status = fields.Char(string="Status of the mail", + help="To identifying status of the mail") + receiver = fields.Char(string="Receiver Name", help="Get receiver name") diff --git a/brevo_connector/static/description/assets/icons/capture (1).png b/brevo_connector/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/brevo_connector/static/description/assets/icons/capture (1).png differ diff --git a/brevo_connector/static/description/assets/icons/check.png b/brevo_connector/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/brevo_connector/static/description/assets/icons/check.png differ diff --git a/brevo_connector/static/description/assets/icons/chevron.png b/brevo_connector/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/brevo_connector/static/description/assets/icons/chevron.png differ diff --git a/brevo_connector/static/description/assets/icons/cogs.png b/brevo_connector/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/brevo_connector/static/description/assets/icons/cogs.png differ diff --git a/brevo_connector/static/description/assets/icons/consultation.png b/brevo_connector/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/brevo_connector/static/description/assets/icons/consultation.png differ diff --git a/brevo_connector/static/description/assets/icons/ecom-black.png b/brevo_connector/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/brevo_connector/static/description/assets/icons/ecom-black.png differ diff --git a/brevo_connector/static/description/assets/icons/education-black.png b/brevo_connector/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/brevo_connector/static/description/assets/icons/education-black.png differ diff --git a/brevo_connector/static/description/assets/icons/hotel-black.png b/brevo_connector/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/brevo_connector/static/description/assets/icons/hotel-black.png differ diff --git a/brevo_connector/static/description/assets/icons/img.png b/brevo_connector/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/brevo_connector/static/description/assets/icons/img.png differ diff --git a/brevo_connector/static/description/assets/icons/license.png b/brevo_connector/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/brevo_connector/static/description/assets/icons/license.png differ diff --git a/brevo_connector/static/description/assets/icons/lifebuoy.png b/brevo_connector/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/brevo_connector/static/description/assets/icons/lifebuoy.png differ diff --git a/brevo_connector/static/description/assets/icons/manufacturing-black.png b/brevo_connector/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/brevo_connector/static/description/assets/icons/manufacturing-black.png differ diff --git a/brevo_connector/static/description/assets/icons/photo-capture.png b/brevo_connector/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/brevo_connector/static/description/assets/icons/photo-capture.png differ diff --git a/brevo_connector/static/description/assets/icons/pos-black.png b/brevo_connector/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/brevo_connector/static/description/assets/icons/pos-black.png differ diff --git a/brevo_connector/static/description/assets/icons/puzzle.png b/brevo_connector/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/brevo_connector/static/description/assets/icons/puzzle.png differ diff --git a/brevo_connector/static/description/assets/icons/restaurant-black.png b/brevo_connector/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/brevo_connector/static/description/assets/icons/restaurant-black.png differ diff --git a/brevo_connector/static/description/assets/icons/service-black.png b/brevo_connector/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/brevo_connector/static/description/assets/icons/service-black.png differ diff --git a/brevo_connector/static/description/assets/icons/trading-black.png b/brevo_connector/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/brevo_connector/static/description/assets/icons/trading-black.png differ diff --git a/brevo_connector/static/description/assets/icons/training.png b/brevo_connector/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/brevo_connector/static/description/assets/icons/training.png differ diff --git a/brevo_connector/static/description/assets/icons/update.png b/brevo_connector/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/brevo_connector/static/description/assets/icons/update.png differ diff --git a/brevo_connector/static/description/assets/icons/user.png b/brevo_connector/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/brevo_connector/static/description/assets/icons/user.png differ diff --git a/brevo_connector/static/description/assets/icons/wrench.png b/brevo_connector/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/brevo_connector/static/description/assets/icons/wrench.png differ diff --git a/brevo_connector/static/description/assets/misc/Cybrosys R.png b/brevo_connector/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/brevo_connector/static/description/assets/misc/Cybrosys R.png differ diff --git a/brevo_connector/static/description/assets/misc/email.svg b/brevo_connector/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/brevo_connector/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/brevo_connector/static/description/assets/misc/phone.svg b/brevo_connector/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/brevo_connector/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/brevo_connector/static/description/assets/misc/star (1) 2.svg b/brevo_connector/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/brevo_connector/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/brevo_connector/static/description/assets/misc/support (1) 1.svg b/brevo_connector/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/brevo_connector/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/brevo_connector/static/description/assets/misc/support-email.svg b/brevo_connector/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/brevo_connector/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/brevo_connector/static/description/assets/misc/tick-mark.svg b/brevo_connector/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/brevo_connector/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/brevo_connector/static/description/assets/misc/whatsapp 1.svg b/brevo_connector/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/brevo_connector/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/brevo_connector/static/description/assets/misc/whatsapp.svg b/brevo_connector/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/brevo_connector/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/brevo_connector/static/description/assets/modules/1.jpg b/brevo_connector/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..c13b125bc Binary files /dev/null and b/brevo_connector/static/description/assets/modules/1.jpg differ diff --git a/brevo_connector/static/description/assets/modules/2.jpg b/brevo_connector/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..4199fb292 Binary files /dev/null and b/brevo_connector/static/description/assets/modules/2.jpg differ diff --git a/brevo_connector/static/description/assets/modules/3.jpg b/brevo_connector/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..da7a164b0 Binary files /dev/null and b/brevo_connector/static/description/assets/modules/3.jpg differ diff --git a/brevo_connector/static/description/assets/modules/4.png b/brevo_connector/static/description/assets/modules/4.png new file mode 100644 index 000000000..7cea975b4 Binary files /dev/null and b/brevo_connector/static/description/assets/modules/4.png differ diff --git a/brevo_connector/static/description/assets/modules/5.png b/brevo_connector/static/description/assets/modules/5.png new file mode 100644 index 000000000..b97f6e369 Binary files /dev/null and b/brevo_connector/static/description/assets/modules/5.png differ diff --git a/brevo_connector/static/description/assets/modules/6.png b/brevo_connector/static/description/assets/modules/6.png new file mode 100644 index 000000000..a80a0d9dc Binary files /dev/null and b/brevo_connector/static/description/assets/modules/6.png differ diff --git a/brevo_connector/static/description/assets/screenshots/1.png b/brevo_connector/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..3fc9069eb Binary files /dev/null and b/brevo_connector/static/description/assets/screenshots/1.png differ diff --git a/brevo_connector/static/description/assets/screenshots/10.png b/brevo_connector/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..82330eee4 Binary files /dev/null and b/brevo_connector/static/description/assets/screenshots/10.png differ diff --git a/brevo_connector/static/description/assets/screenshots/2.png b/brevo_connector/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..141fb6559 Binary files /dev/null and b/brevo_connector/static/description/assets/screenshots/2.png differ diff --git a/brevo_connector/static/description/assets/screenshots/3.png b/brevo_connector/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..7bf940532 Binary files /dev/null and b/brevo_connector/static/description/assets/screenshots/3.png differ diff --git a/brevo_connector/static/description/assets/screenshots/4.png b/brevo_connector/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..fcb06a47b Binary files /dev/null and b/brevo_connector/static/description/assets/screenshots/4.png differ diff --git a/brevo_connector/static/description/assets/screenshots/5.png b/brevo_connector/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..26e7d274c Binary files /dev/null and b/brevo_connector/static/description/assets/screenshots/5.png differ diff --git a/brevo_connector/static/description/assets/screenshots/6.png b/brevo_connector/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..4de440345 Binary files /dev/null and b/brevo_connector/static/description/assets/screenshots/6.png differ diff --git a/brevo_connector/static/description/assets/screenshots/7.png b/brevo_connector/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..802867c60 Binary files /dev/null and b/brevo_connector/static/description/assets/screenshots/7.png differ diff --git a/brevo_connector/static/description/assets/screenshots/8.png b/brevo_connector/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..304133799 Binary files /dev/null and b/brevo_connector/static/description/assets/screenshots/8.png differ diff --git a/brevo_connector/static/description/assets/screenshots/9.png b/brevo_connector/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..c0c3f74d9 Binary files /dev/null and b/brevo_connector/static/description/assets/screenshots/9.png differ diff --git a/brevo_connector/static/description/assets/screenshots/hero-v17.gif b/brevo_connector/static/description/assets/screenshots/hero-v17.gif new file mode 100644 index 000000000..163a2ce3f Binary files /dev/null and b/brevo_connector/static/description/assets/screenshots/hero-v17.gif differ diff --git a/brevo_connector/static/description/banner.jpg b/brevo_connector/static/description/banner.jpg new file mode 100644 index 000000000..eb5f82aa6 Binary files /dev/null and b/brevo_connector/static/description/banner.jpg differ diff --git a/brevo_connector/static/description/icon.png b/brevo_connector/static/description/icon.png new file mode 100644 index 000000000..eb28fbc66 Binary files /dev/null and b/brevo_connector/static/description/icon.png differ diff --git a/brevo_connector/static/description/index.html b/brevo_connector/static/description/index.html new file mode 100644 index 000000000..361b2da7f --- /dev/null +++ b/brevo_connector/static/description/index.html @@ -0,0 +1,728 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Brevo Connector +

+

+ This module allows you to know the Status of Mail that send from Odoo to Another Mail by set up the Outgoing Mail Server through Brevo. +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

Easy to set up the Outgoing Mail Server by using the Credentials provided by Brevo.

+

+
+
+
+
+
+
+ +
+
+

View the Status of every Mail that Send to a particular mail from the "Message" menu in settings.

+

+
+
+
+
+
+
+ +
+
+

Able to view all Status like Sent,Deferred,Delivered,Known Open,First Opening,Clicks,Soft Bounce,Hard Bounce,Invalid Email,Blocked,Complaint,Unsubscribed and Error.

+

+
+
+
+
+
+
+ +
+
+

We can view the Email ID of the Receiver also.

+

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

+ Create a Webhook inside Brevo

+

+ Need to establish a connection between Odoo and Brevo.For that login with Brevo Account and create a webhook inside Brevo. Brevo -> Transactional -> Settings ->Webhook -> Add a new webhook + Inside the webhook.
+ 1. Provide the URL to call, that is your base url of odoo instance + "/brevo"
+ 2. And save the hook +

+
+
+
+
+
+
+ +
+
+

+ Webhook is created.

+
+
+
+
+
+
+ +
+
+

+ Set the Outgoing Mail Server.

+

+ Go to Settings -> Technical -> Outgoing Mail Servers +

+
+
+
+
+
+
+ +
+
+

+ Create a new Outgoing Mail Server.

+

+ Set the Connection Encryption as TLS, SMTP Server, SMTP Port, Username and Password +

+
+
+
+
+
+
+ +
+
+

+ To Get the Credentials.

+

+ Go to SMTP & API +

+
+
+
+
+
+
+ +
+
+

+ Here you can see the Credentials.

+

+ SMTP Server, Port, Login and Password as SMTP Key valure +

+
+
+
+
+
+
+ +
+
+

+ Send a Mail from Sales.

+

+ Going to Send a Quotation to the Customer. +

+
+
+
+
+
+
+ +
+
+

+ Message.

+

+ Go to Settings -> Technical -> Messages +. +

+
+
+
+
+
+
+ +
+
+

+ Status of the recent mail.

+

+ Here under the Status of the mail you can see the Status of the mail.The mail is request to the corresponding mail of the Customer.So the Status is 'request'. +

+
+
+
+
+
+
+ +
+
+

+ Receiver Email ID

+

+ The field 'To' is for recognising the receiver Email ID. +

+
+
+
+
+
+
+
    +
  • + Easy to set up the Outgoing Mail Server by using the Credentials provided by Brevo. + +
  • + +
  • + View the Status of every Mail that Send to a particular mail from the "Message" menu in settings. + . +
  • +
  • + Able to view all Status like Sent,Deferred,Delivered,Known Open,First Opening,Clicks,Soft Bounce,Hard Bounce,Invalid Email,Blocked,Complaint,Unsubscribed and Error. + . +
  • +
  • + We can view the Email ID of the Receiver also . + . +
  • + + +
+
+
+
+
+
+
Version + 16.0.1.0.0|Released on:12th March 2024 +
+

+ + Initial Commit for Brevo Connector.

+
+
+
+
+
+
+
+

Related Products

+
+
+ +
+
+

Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Licensing Consultancy

+
+
+
+
+
+
+

Our Industries

+ +
+
+
+
+
+
+ +

Trading

+

Easily procure and sell your products

+
+
+
+
+ +

POS

+

Easy configuration and convivial experience

+
+
+
+
+ +

Education

+

A platform for educational management

+
+
+
+
+ +

Manufacturing

+

Plan, track and schedule your operations

+
+
+
+
+ +

E-commerce & Website

+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +

Service Management

+

Keep track of services and invoice

+
+
+
+
+ +

Restaurant

+

Run your bar or restaurant methodically

+
+
+
+
+ +

Hotel Management

+

An all-inclusive hotel management application

+
+
+
+
+
+
+

Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to us on WhatsApp!

+
+91 + 99456767686
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/brevo_connector/views/mail_message_views.xml b/brevo_connector/views/mail_message_views.xml new file mode 100755 index 000000000..91aa3ba7f --- /dev/null +++ b/brevo_connector/views/mail_message_views.xml @@ -0,0 +1,27 @@ + + + + + mail.message.view.form.inherit.brevo.connector + mail.message + + + + + + + + + + + mail.message.view.tree.inherit.brevo.connector + mail.message + + + + + + + + +