[IMP] typo manifest mass mailing'
[odoo/odoo.git] / addons / mass_mailing / __openerp__.py
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 {
23     'name': 'Mass Mailing Campaigns',
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': '1.0',
30     'author': 'OpenERP',
31     'website': 'http://www.openerp.com',
32     'category': 'Marketing',
33     'depends': [
34         'mail',
35         'email_template',
36         'web_kanban_gauge',
37         'web_kanban_sparkline',
38     ],
39     'data': [
40         'mail_data.xml',
41         'mass_mailing_view.xml',
42         'wizard/mail_compose_message_view.xml',
43         'wizard/mail_mass_mailing_create_segment.xml',
44         'security/ir.model.access.csv',
45     ],
46     'js': [
47         'static/src/js/mass_mailing.js',
48     ],
49     'qweb': [],
50     'css': [
51         'static/src/css/mass_mailing.css'
52     ],
53     'demo': [
54         'mass_mailing_demo.xml',
55     ],
56     'installable': True,
57     'auto_install': False,
58 }