__manifest__.py 567 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Mass Mailing Themes',
  5. 'summary': 'Design gorgeous mails',
  6. 'description': """
  7. Design gorgeous mails
  8. """,
  9. 'version': '1.1',
  10. 'sequence': 110,
  11. 'website': 'https://www.odoo.com/app/mailing',
  12. 'category': 'Marketing/Email Marketing',
  13. 'depends': [
  14. 'mass_mailing',
  15. ],
  16. 'data': [
  17. 'views/mass_mailing_themes_templates.xml'
  18. ],
  19. 'installable': True,
  20. 'auto_install': True,
  21. 'license': 'LGPL-3',
  22. }