diff --git a/sendinblue_connector/README.rst b/sendinblue_connector/README.rst new file mode 100644 index 000000000..7199280bb --- /dev/null +++ b/sendinblue_connector/README.rst @@ -0,0 +1,44 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Odoo Sendinblue Connector +========================= + +odooSendinblue Connector + +Installation +============ +- www.odoo.com/documentation/13.0/setup/install.html +- Install our custom addon + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: + Ammu@cybrosys + Version 16.0.1.0.0: Ammu@cybrosys + +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: ``__ \ No newline at end of file diff --git a/sendinblue_connector/__init__.py b/sendinblue_connector/__init__.py new file mode 100644 index 000000000..7c6a59f93 --- /dev/null +++ b/sendinblue_connector/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Cybrosys Technologies() +# +# 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 controllers +from . import models diff --git a/sendinblue_connector/__manifest__.py b/sendinblue_connector/__manifest__.py new file mode 100644 index 000000000..6cb830ae4 --- /dev/null +++ b/sendinblue_connector/__manifest__.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Cybrosys Technologies() +# +# 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': 'Odoo Sendinblue Connector', + 'version': '16.0.1.0.0', + 'summary': 'Allows to view the status of mail send by Odoo by Connecting to Sendinblue.', + 'description': 'Allows to view the status of mail send by Odoo by Connecting to Sendinblue.', + 'author': 'Cybrosys Techno solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'license': 'LGPL-3', + 'depends': ['base', 'mail'], + 'data': ['views/mail_message_views.xml', + ], + 'installable': True, + 'application': False, + 'auto_install': False, + 'license': 'AGPL-3', +} diff --git a/sendinblue_connector/controllers/__init__.py b/sendinblue_connector/controllers/__init__.py new file mode 100644 index 000000000..d6dc4cf8b --- /dev/null +++ b/sendinblue_connector/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Cybrosys Technologies() +# +# 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 main diff --git a/sendinblue_connector/controllers/main.py b/sendinblue_connector/controllers/main.py new file mode 100644 index 000000000..80a59ec91 --- /dev/null +++ b/sendinblue_connector/controllers/main.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Cybrosys Technologies() +# +# 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 . +# +############################################################################# + +import json +import logging + +from odoo import http +from odoo.http import request + +_logger = logging.getLogger(__name__) + + +class SendinBlueRequest(http.Controller): + + @http.route(['/send-in-blue'], auth='public', csrf=False, type='json', methods=['POST']) + def sent(self, **kw): + data = json.loads(request.httprequest.data) + _request = data + _logger.info(data) + blue_message_id = data['message-id'] + event = data['event'] + partner_email = data['email'] + message_id = request.env['mail.message'].sudo().search([('message_id', 'ilike', blue_message_id)]) + message_id.sudo().write({ + 'status': event, + 'to': partner_email, + }) + if event == 'click': + links_clicked = data['link'] + else: + links_clicked = '' + return 'ok', 200 diff --git a/sendinblue_connector/doc/RELEASE_NOTES.md b/sendinblue_connector/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..572369f6f --- /dev/null +++ b/sendinblue_connector/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 03.11.2022 +#### Version 16.0.1.0.0 +#### ADD +- Initial commit for Odoo Sendinblue Connector diff --git a/sendinblue_connector/models/__init__.py b/sendinblue_connector/models/__init__.py new file mode 100644 index 000000000..3adc95e3c --- /dev/null +++ b/sendinblue_connector/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Cybrosys Technologies() +# +# 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 mail_massage diff --git a/sendinblue_connector/models/mail_massage.py b/sendinblue_connector/models/mail_massage.py new file mode 100644 index 000000000..84d2e368e --- /dev/null +++ b/sendinblue_connector/models/mail_massage.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Cybrosys Technologies() +# +# 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 MailMessage(models.Model): + _inherit = 'mail.message' + + status = fields.Char(string="Status of the Mail") + to = fields.Char(string="To") diff --git a/sendinblue_connector/static/description/assets/icons/check.png b/sendinblue_connector/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/check.png differ diff --git a/sendinblue_connector/static/description/assets/icons/chevron.png b/sendinblue_connector/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/chevron.png differ diff --git a/sendinblue_connector/static/description/assets/icons/cogs.png b/sendinblue_connector/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/cogs.png differ diff --git a/sendinblue_connector/static/description/assets/icons/consultation.png b/sendinblue_connector/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/consultation.png differ diff --git a/sendinblue_connector/static/description/assets/icons/ecom-black.png b/sendinblue_connector/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/ecom-black.png differ diff --git a/sendinblue_connector/static/description/assets/icons/education-black.png b/sendinblue_connector/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/education-black.png differ diff --git a/sendinblue_connector/static/description/assets/icons/hotel-black.png b/sendinblue_connector/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/hotel-black.png differ diff --git a/sendinblue_connector/static/description/assets/icons/license.png b/sendinblue_connector/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/license.png differ diff --git a/sendinblue_connector/static/description/assets/icons/lifebuoy.png b/sendinblue_connector/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/lifebuoy.png differ diff --git a/sendinblue_connector/static/description/assets/icons/manufacturing-black.png b/sendinblue_connector/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/manufacturing-black.png differ diff --git a/sendinblue_connector/static/description/assets/icons/pos-black.png b/sendinblue_connector/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/pos-black.png differ diff --git a/sendinblue_connector/static/description/assets/icons/puzzle.png b/sendinblue_connector/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/puzzle.png differ diff --git a/sendinblue_connector/static/description/assets/icons/restaurant-black.png b/sendinblue_connector/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/restaurant-black.png differ diff --git a/sendinblue_connector/static/description/assets/icons/service-black.png b/sendinblue_connector/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/service-black.png differ diff --git a/sendinblue_connector/static/description/assets/icons/trading-black.png b/sendinblue_connector/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/trading-black.png differ diff --git a/sendinblue_connector/static/description/assets/icons/training.png b/sendinblue_connector/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/training.png differ diff --git a/sendinblue_connector/static/description/assets/icons/update.png b/sendinblue_connector/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/update.png differ diff --git a/sendinblue_connector/static/description/assets/icons/user.png b/sendinblue_connector/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/user.png differ diff --git a/sendinblue_connector/static/description/assets/icons/wrench.png b/sendinblue_connector/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/sendinblue_connector/static/description/assets/icons/wrench.png differ diff --git a/sendinblue_connector/static/description/assets/misc/categories.png b/sendinblue_connector/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/categories.png differ diff --git a/sendinblue_connector/static/description/assets/misc/check-box.png b/sendinblue_connector/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/check-box.png differ diff --git a/sendinblue_connector/static/description/assets/misc/compass.png b/sendinblue_connector/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/compass.png differ diff --git a/sendinblue_connector/static/description/assets/misc/corporate.png b/sendinblue_connector/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/corporate.png differ diff --git a/sendinblue_connector/static/description/assets/misc/customer-support.png b/sendinblue_connector/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/customer-support.png differ diff --git a/sendinblue_connector/static/description/assets/misc/cybrosys-logo.png b/sendinblue_connector/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/cybrosys-logo.png differ diff --git a/sendinblue_connector/static/description/assets/misc/features.png b/sendinblue_connector/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/features.png differ diff --git a/sendinblue_connector/static/description/assets/misc/logo.png b/sendinblue_connector/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/logo.png differ diff --git a/sendinblue_connector/static/description/assets/misc/pictures.png b/sendinblue_connector/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/pictures.png differ diff --git a/sendinblue_connector/static/description/assets/misc/pie-chart.png b/sendinblue_connector/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/pie-chart.png differ diff --git a/sendinblue_connector/static/description/assets/misc/right-arrow.png b/sendinblue_connector/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/right-arrow.png differ diff --git a/sendinblue_connector/static/description/assets/misc/star.png b/sendinblue_connector/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/star.png differ diff --git a/sendinblue_connector/static/description/assets/misc/support.png b/sendinblue_connector/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/support.png differ diff --git a/sendinblue_connector/static/description/assets/misc/whatsapp.png b/sendinblue_connector/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/sendinblue_connector/static/description/assets/misc/whatsapp.png differ diff --git a/sendinblue_connector/static/description/assets/modules/1.png b/sendinblue_connector/static/description/assets/modules/1.png new file mode 100644 index 000000000..5238bdeab Binary files /dev/null and b/sendinblue_connector/static/description/assets/modules/1.png differ diff --git a/sendinblue_connector/static/description/assets/modules/2.png b/sendinblue_connector/static/description/assets/modules/2.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/sendinblue_connector/static/description/assets/modules/2.png differ diff --git a/sendinblue_connector/static/description/assets/modules/3.png b/sendinblue_connector/static/description/assets/modules/3.png new file mode 100644 index 000000000..3c3ff1afb Binary files /dev/null and b/sendinblue_connector/static/description/assets/modules/3.png differ diff --git a/sendinblue_connector/static/description/assets/modules/4.png b/sendinblue_connector/static/description/assets/modules/4.png new file mode 100644 index 000000000..3fae4631e Binary files /dev/null and b/sendinblue_connector/static/description/assets/modules/4.png differ diff --git a/sendinblue_connector/static/description/assets/modules/5.gif b/sendinblue_connector/static/description/assets/modules/5.gif new file mode 100644 index 000000000..2a5f8e659 Binary files /dev/null and b/sendinblue_connector/static/description/assets/modules/5.gif differ diff --git a/sendinblue_connector/static/description/assets/modules/6.png b/sendinblue_connector/static/description/assets/modules/6.png new file mode 100644 index 000000000..7f2815273 Binary files /dev/null and b/sendinblue_connector/static/description/assets/modules/6.png differ diff --git a/sendinblue_connector/static/description/assets/screenshots/hero.gif b/sendinblue_connector/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..d8795ace3 Binary files /dev/null and b/sendinblue_connector/static/description/assets/screenshots/hero.gif differ diff --git a/sendinblue_connector/static/description/assets/screenshots/sendin1.png b/sendinblue_connector/static/description/assets/screenshots/sendin1.png new file mode 100644 index 000000000..529a14dcf Binary files /dev/null and b/sendinblue_connector/static/description/assets/screenshots/sendin1.png differ diff --git a/sendinblue_connector/static/description/assets/screenshots/sendin2.png b/sendinblue_connector/static/description/assets/screenshots/sendin2.png new file mode 100644 index 000000000..7e763f14c Binary files /dev/null and b/sendinblue_connector/static/description/assets/screenshots/sendin2.png differ diff --git a/sendinblue_connector/static/description/assets/screenshots/sendin3.png b/sendinblue_connector/static/description/assets/screenshots/sendin3.png new file mode 100644 index 000000000..57f5c374b Binary files /dev/null and b/sendinblue_connector/static/description/assets/screenshots/sendin3.png differ diff --git a/sendinblue_connector/static/description/assets/screenshots/sendin4.png b/sendinblue_connector/static/description/assets/screenshots/sendin4.png new file mode 100644 index 000000000..c25a87933 Binary files /dev/null and b/sendinblue_connector/static/description/assets/screenshots/sendin4.png differ diff --git a/sendinblue_connector/static/description/assets/screenshots/sendin5.png b/sendinblue_connector/static/description/assets/screenshots/sendin5.png new file mode 100644 index 000000000..b5c722dc2 Binary files /dev/null and b/sendinblue_connector/static/description/assets/screenshots/sendin5.png differ diff --git a/sendinblue_connector/static/description/assets/screenshots/sendin6.png b/sendinblue_connector/static/description/assets/screenshots/sendin6.png new file mode 100644 index 000000000..f0e359869 Binary files /dev/null and b/sendinblue_connector/static/description/assets/screenshots/sendin6.png differ diff --git a/sendinblue_connector/static/description/banner.png b/sendinblue_connector/static/description/banner.png new file mode 100644 index 000000000..938e114e1 Binary files /dev/null and b/sendinblue_connector/static/description/banner.png differ diff --git a/sendinblue_connector/static/description/icon.png b/sendinblue_connector/static/description/icon.png new file mode 100644 index 000000000..dc5477484 Binary files /dev/null and b/sendinblue_connector/static/description/icon.png differ diff --git a/sendinblue_connector/static/description/index.html b/sendinblue_connector/static/description/index.html new file mode 100644 index 000000000..91ea24096 --- /dev/null +++ b/sendinblue_connector/static/description/index.html @@ -0,0 +1,573 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+
+ + + +

Odoo Sendinblue Connector

+

This odoo module allows you to know the status of mail that send from odoo to another mail by setup the outgoing mail server through Sendinblue. +

+ + + +
+ + +
+
+ +
+

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ Allows you to know the status mail that send from Odoo to another mails. +
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ +
+ Easy to set up + Easy to set up the outgoing mail server by using the credentials provided by Sendinblue. +
+
+
+ +
+ Status of mail + View the status of every mail that send to a particular mail from the "Message" menu in settings +
+
+ +
+
+
+ +
+ Kind of Status + 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 +
+
+
+ +
+ Receiver Email ID + We can view the Email Id of the receiver also. +
+
+
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

Create a Webhook inside Sendinblue

+

Need to establish a connection between odoo and Sendinblue.For that create a webhook inside Sendinblue + Sendinblue --> Transactional --> Setting -->Webhook --> Add a new webhook
+ Inside the opened webhook
+ 1.Provide the URL to call, that is your url/send-in-blue
+ 2. Save the hook
+ Below you can see an example

+ +
+ +
+

Webhook is created.

+ +
+
+

Send a mail from Sales

+

Going to send a quotation to the customer.

+ +
+
+

Message

+

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 delivered to the corresponding mail of the customer.So the status is 'delivered'.

+ +
+
+

Receiver Email ID

+

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

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

Related + Products +

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

Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ 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 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/sendinblue_connector/views/mail_message_views.xml b/sendinblue_connector/views/mail_message_views.xml new file mode 100644 index 000000000..2225e1263 --- /dev/null +++ b/sendinblue_connector/views/mail_message_views.xml @@ -0,0 +1,23 @@ + + + + mail.message + + + + + + + + + + mail.message + + + + + + + + +