mirror of https://github.com/OCA/social.git
[MIG] mail_tracking_mass_mailing: Migration to v15.0
parent
8d6c2c4f97
commit
0520c8651a
|
@ -14,13 +14,13 @@ Mail tracking for mass mailing
|
|||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsocial-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/social/tree/14.0/mail_tracking_mass_mailing
|
||||
:target: https://github.com/OCA/social/tree/15.0/mail_tracking_mass_mailing
|
||||
:alt: OCA/social
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/social-14-0/social-14-0-mail_tracking_mass_mailing
|
||||
:target: https://translation.odoo-community.org/projects/social-15-0/social-15-0-mail_tracking_mass_mailing
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/205/14.0
|
||||
:target: https://runbot.odoo-community.org/runbot/205/15.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
@ -58,7 +58,7 @@ Bug Tracker
|
|||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/social/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/social/issues/new?body=module:%20mail_tracking_mass_mailing%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
`feedback <https://github.com/OCA/social/issues/new?body=module:%20mail_tracking_mass_mailing%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
|
@ -81,6 +81,7 @@ Contributors
|
|||
* David Vidal
|
||||
* Ernesto Tejeda
|
||||
* Carlos Roca
|
||||
* Sergio Teruel
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
@ -95,6 +96,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/social <https://github.com/OCA/social/tree/14.0/mail_tracking_mass_mailing>`_ project on GitHub.
|
||||
This module is part of the `OCA/social <https://github.com/OCA/social/tree/15.0/mail_tracking_mass_mailing>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{
|
||||
"name": "Mail tracking for mass mailing",
|
||||
"summary": "Improve mass mailing email tracking",
|
||||
"version": "14.0.1.0.1",
|
||||
"version": "15.0.1.0.0",
|
||||
"category": "Social Network",
|
||||
"website": "https://github.com/OCA/social",
|
||||
"author": "Tecnativa, Odoo Community Association (OCA)",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# Copyright 2017 Tecnativa - Vicent Cubells
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import api, fields, models
|
||||
from odoo import api, models
|
||||
|
||||
|
||||
class MailMail(models.Model):
|
||||
|
@ -45,13 +45,12 @@ class MailMail(models.Model):
|
|||
mail_tracking = mail.mailing_trace_ids.mail_tracking_id
|
||||
if mail.mailing_id and mail_tracking.state == "error":
|
||||
mail_failure_type = (
|
||||
"RECIPIENT"
|
||||
"mail_email_invalid"
|
||||
if mail_tracking.error_type == "no_recipient"
|
||||
else "SMTP"
|
||||
else "mail_smtp"
|
||||
)
|
||||
mail.mailing_trace_ids.write(
|
||||
{
|
||||
"exception": fields.Datetime.now(),
|
||||
"failure_type": mail_failure_type,
|
||||
}
|
||||
)
|
||||
|
|
|
@ -20,12 +20,14 @@ class MailTrackingEvent(models.Model):
|
|||
def process_open(self, tracking_email, metadata):
|
||||
res = super().process_open(tracking_email, metadata)
|
||||
mail_mail_stats = self.sudo().env["mailing.trace"]
|
||||
mail_mail_stats.set_opened(mail_mail_ids=[tracking_email.mail_id_int])
|
||||
domain = [("mail_mail_id_int", "=", tracking_email.mail_id_int)]
|
||||
mail_mail_stats.set_opened(domain=domain)
|
||||
return res
|
||||
|
||||
def _tracking_set_bounce(self, tracking_email, metadata):
|
||||
mail_mail_stats = self.sudo().env["mailing.trace"]
|
||||
mail_mail_stats.set_bounced(mail_mail_ids=[tracking_email.mail_id_int])
|
||||
domain = [("mail_mail_id_int", "=", tracking_email.mail_id_int)]
|
||||
mail_mail_stats.set_bounced(domain=domain)
|
||||
|
||||
@api.model
|
||||
def process_hard_bounce(self, tracking_email, metadata):
|
||||
|
|
|
@ -6,3 +6,4 @@
|
|||
* David Vidal
|
||||
* Ernesto Tejeda
|
||||
* Carlos Roca
|
||||
* Sergio Teruel
|
||||
|
|
|
@ -367,7 +367,7 @@ ul.auto-toc {
|
|||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/social/tree/14.0/mail_tracking_mass_mailing"><img alt="OCA/social" src="https://img.shields.io/badge/github-OCA%2Fsocial-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/social-14-0/social-14-0-mail_tracking_mass_mailing"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/205/14.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/social/tree/15.0/mail_tracking_mass_mailing"><img alt="OCA/social" src="https://img.shields.io/badge/github-OCA%2Fsocial-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/social-15-0/social-15-0-mail_tracking_mass_mailing"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/205/15.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p>Links mail statistics objects with mail tracking objects.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
|
@ -404,7 +404,7 @@ emails again to all the recipients, you must duplicate mass mailing.</p>
|
|||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/social/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/social/issues/new?body=module:%20mail_tracking_mass_mailing%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<a class="reference external" href="https://github.com/OCA/social/issues/new?body=module:%20mail_tracking_mass_mailing%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
|
@ -425,6 +425,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
|
|||
<li>David Vidal</li>
|
||||
<li>Ernesto Tejeda</li>
|
||||
<li>Carlos Roca</li>
|
||||
<li>Sergio Teruel</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -436,7 +437,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
|
|||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/social/tree/14.0/mail_tracking_mass_mailing">OCA/social</a> project on GitHub.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/social/tree/15.0/mail_tracking_mass_mailing">OCA/social</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -35,7 +35,7 @@ class TestMassMailing(TransactionCase):
|
|||
"mailing_domain": "[('list_ids', 'in', %d)]" % self.list.id,
|
||||
"contact_list_ids": [(6, False, [self.list.id])],
|
||||
"body_html": "<p>Test email body</p>",
|
||||
"reply_to_mode": "email",
|
||||
"reply_to_mode": "new",
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -54,9 +54,8 @@ class TestMassMailing(TransactionCase):
|
|||
self.assertEqual("error", track.state)
|
||||
self.assertEqual("Warning", track.error_type)
|
||||
self.assertEqual("Mock test error", track.error_description)
|
||||
self.assertTrue(stat.exception)
|
||||
self.assertEqual(stat.state, "exception")
|
||||
self.assertEqual(stat.failure_type, "SMTP")
|
||||
self.assertEqual(stat.trace_status, "outgoing")
|
||||
self.assertEqual(stat.failure_type, "mail_smtp")
|
||||
self.assertTrue(self.contact_a.email_bounced)
|
||||
|
||||
def test_tracking_email_link(self):
|
||||
|
@ -79,7 +78,7 @@ class TestMassMailing(TransactionCase):
|
|||
"ua_family": "odoo",
|
||||
}
|
||||
tracking_email.event_create("open", metadata)
|
||||
self.assertTrue(stat.opened)
|
||||
self.assertEqual(stat.trace_status, "open")
|
||||
|
||||
def _tracking_email_bounce(self, event_type, state):
|
||||
self.mailing.action_send_mail()
|
||||
|
@ -95,7 +94,7 @@ class TestMassMailing(TransactionCase):
|
|||
"bounce_description": "Unable to connect to MX servers",
|
||||
}
|
||||
tracking_email.event_create(event_type, metadata)
|
||||
self.assertTrue(stat.bounced)
|
||||
self.assertEqual(stat.trace_status, "bounce")
|
||||
|
||||
def test_tracking_email_hard_bounce(self):
|
||||
self._tracking_email_bounce("hard_bounce", "bounced")
|
||||
|
|
|
@ -17,8 +17,10 @@
|
|||
<div>
|
||||
<field name="tracking_event_ids">
|
||||
<tree
|
||||
string="Tracking events"
|
||||
colors="grey:event_type in ('deferral');black:event_type in ('send');red:event_type in ('hard_bounce', 'soft_bounce', 'spam', 'reject');blue:event_type in ('unsub', 'click', 'open')"
|
||||
decoration-muted="event_type in ('deferral')"
|
||||
decoration-bf="event_type in ('send')"
|
||||
decoration-danger="event_type in ('hard_bounce', 'soft_bounce', 'spam', 'reject')"
|
||||
decoration-info="event_type in ('unsub', 'click', 'open')"
|
||||
>
|
||||
<field name="time" />
|
||||
<field name="event_type" />
|
||||
|
|
Loading…
Reference in New Issue