__openerp__.py 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>)
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>
  19. #
  20. ##############################################################################
  21. {
  22. 'name': 'Campañas de Email',
  23. 'summary': 'Design, send and track emails',
  24. 'description': """
  25. Easily send mass mailing to your leads, opportunities or customers. Track
  26. marketing campaigns performance to improve conversion rates. Design
  27. professional emails and reuse templates in a few clicks.
  28. """,
  29. 'version': '2.0',
  30. 'author': 'OpenERP',
  31. 'website': 'https://www.odoo.com/page/mailing',
  32. 'category': 'Marketing',
  33. 'depends': [
  34. 'mail',
  35. 'email_template',
  36. 'marketing',
  37. 'web_kanban_gauge',
  38. 'web_kanban_sparkline',
  39. # 'website_mail',
  40. ],
  41. 'data': [
  42. 'data/mail_data.xml',
  43. 'data/mass_mailing_data.xml',
  44. 'wizard/mail_compose_message_view.xml',
  45. 'wizard/test_mailing.xml',
  46. 'views/mass_mailing_report.xml',
  47. 'views/mass_mailing.xml',
  48. 'views/res_config.xml',
  49. 'views/res_partner.xml',
  50. 'views/email_template.xml',
  51. 'views/website_mass_mailing.xml',
  52. 'views/snippets.xml',
  53. 'security/ir.model.access.csv',
  54. 'views/mass_mailing.xml',
  55. ],
  56. 'qweb': [],
  57. 'demo': [
  58. 'data/mass_mailing_demo.xml',
  59. ],
  60. 'installable': True,
  61. 'auto_install': False,
  62. }