You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
2.7 KiB

  1. .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
  2. :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
  3. :alt: License: AGPL-3
  4. ===============================
  5. Link partners with mass-mailing
  6. ===============================
  7. This module links mass-mailing contacts with partners.
  8. Features
  9. --------
  10. * When creating or saving a mass-mailing contact, partners are matched through
  11. email, linking matched partner, or creating a new one if no match and the
  12. maling list partner mandatory field is checked.
  13. * Mailing contacts smart button in partner form.
  14. * Mass mailing stats smart button in partner form.
  15. * Filter and group by partner in mail statistics tree view
  16. Configuration
  17. =============
  18. At first install, all existing mass mailing contacts are matched against
  19. partners. And also mass mailing statistics are matched using model and res_id.
  20. NOTE: When upgrading from version 1.0.0, no mass mailing statistics matching
  21. are done, because it is done only when installing. You can execute 'partner_link'
  22. method to all stats using odoo shell or any XML client:
  23. .. code:: python
  24. # odoo.py --addons-path=<addons_path_list> shell --config=<odoo_config_file> -d <database>
  25. stats = self.env['mail.mail.statistics'].search([('model', '!=', False), ('res_id', '!=', False)])
  26. stats.partner_link()
  27. Usage
  28. =====
  29. In partner view, there is a new action called "Add to mailing list". This
  30. action open a pop-up to select a mailing list. Selected partners will be added
  31. as mailing list contacts.
  32. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
  33. :alt: Try me on Runbot
  34. :target: https://runbot.odoo-community.org/runbot/111/9.0
  35. Bug Tracker
  36. ===========
  37. Bugs are tracked on `GitHub Issues
  38. <https://github.com/OCA/crm/issues>`_. In case of trouble, please
  39. check there if your issue has already been reported. If you spotted it first,
  40. help us smashing it by providing a detailed and welcomed feedback.
  41. Credits
  42. =======
  43. Contributors
  44. ------------
  45. * Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
  46. * Rafael Blasco <rafael.blasco@tecnativa.com>
  47. * Antonio Espinosa <antonioea@antiun.com>
  48. * Javier Iniesta <javieria@antiun.com>
  49. * Jairo Llopis <jairo.llopis@tecnativa.com>
  50. * Alessio Gerace <alessio.gerace@gmail.com>
  51. Maintainer
  52. ----------
  53. .. image:: https://odoo-community.org/logo.png
  54. :alt: Odoo Community Association
  55. :target: https://odoo-community.org
  56. This module is maintained by the OCA.
  57. OCA, or the Odoo Community Association, is a nonprofit organization whose
  58. mission is to support the collaborative development of Odoo features and
  59. promote its widespread use.
  60. To contribute to this module, please visit https://odoo-community.org.