Browse Source
[MIG] mass_mailing_resend: Migration to 11.0
[MIG] mass_mailing_resend: Migration to 11.0
* Standard procedure * Adopt README by fragments * Adapt testspull/317/head
Pedro M. Baeza
6 years ago
committed by
Holger Brunn
10 changed files with 86 additions and 35 deletions
-
81mass_mailing_resend/README.rst
-
5mass_mailing_resend/__manifest__.py
-
1mass_mailing_resend/models/__init__.py
-
1mass_mailing_resend/models/mass_mailing.py
-
3mass_mailing_resend/readme/CONTRIBUTORS.rst
-
15mass_mailing_resend/readme/DESCRIPTION.rst
-
3mass_mailing_resend/readme/ROADMAP.rst
-
4mass_mailing_resend/readme/USAGE.rst
-
1mass_mailing_resend/tests/__init__.py
-
7mass_mailing_resend/tests/test_mass_mailing_resend.py
@ -1,4 +1,3 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import mass_mailing |
@ -0,0 +1,3 @@ |
|||
* `Tecnativa <https://www.tecnativa.com>`_: |
|||
|
|||
* Pedro M. Baeza |
@ -0,0 +1,15 @@ |
|||
A frequent need for users of mass mailings is to resend one mailing that has |
|||
already been sent in the past to new recipients that haven't received yet that |
|||
mail. But the problem is to know which are the applicable ones. |
|||
|
|||
Odoo already includes a method in its mass mailing logic that avoids to resend |
|||
the same mail 2 times for one mass mailing, and for v9, there was a trick that |
|||
allows to modify the state of a mass mailing from kanban view, covering the |
|||
need. |
|||
|
|||
But now since v10 both status bar in form view and dragging between states in |
|||
kanban are not allowed. |
|||
|
|||
This module introduces a button to restart a mass mailing to draft state, |
|||
allowing you to reevaluate the sending domain or list for performing again |
|||
the mailing. |
@ -0,0 +1,3 @@ |
|||
* Add an indicator / filter for knowing resent mailings. |
|||
* Include information on the number of new recipients to be sent on the |
|||
resending (through `get_remaining_recipients` method). |
@ -0,0 +1,4 @@ |
|||
* Go to *Email marketing > Mailings > Mass Mailings*. |
|||
* Click on one record that is done or create a new one and send it. |
|||
* You will see a button called "Resend". |
|||
* If you click on it, mass mailing will be set to Draft again. |
@ -1,4 +1,3 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import test_mass_mailing_resend |
Write
Preview
Loading…
Cancel
Save
Reference in new issue