Merge pull request #232 from odoo-dev/saas-4-mass_mailing-fixes-tde
[odoo/odoo.git] / addons / email_template / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2009 Sharoon Thomas
6 #    Copyright (C) 2010-Today OpenERP SA (<http://www.openerp.com>)
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>
20 #
21 ##############################################################################
22
23 {
24     'name' : 'Email Templates',
25     'version' : '1.1',
26     'author' : 'OpenERP,OpenLabs',
27     'website' : 'http://openerp.com',
28     'category' : 'Marketing',
29     'depends' : ['mail'],
30     'description': """
31 Email Templating (simplified version of the original Power Email by Openlabs).
32 ==============================================================================
33
34 Lets you design complete email templates related to any OpenERP document (Sale
35 Orders, Invoices and so on), including sender, recipient, subject, body (HTML and
36 Text). You may also automatically attach files to your templates, or print and
37 attach a report.
38
39 For advanced use, the templates may include dynamic attributes of the document
40 they are related to. For example, you may use the name of a Partner's country
41 when writing to them, also providing a safe default in case the attribute is
42 not defined. Each template contains a built-in assistant to help with the
43 inclusion of these dynamic values.
44
45 If you enable the option, a composition assistant will also appear in the sidebar
46 of the OpenERP documents to which the template applies (e.g. Invoices).
47 This serves as a quick way to send a new email based on the template, after
48 reviewing and adapting the contents, if needed.
49 This composition assistant will also turn into a mass mailing system when called
50 for multiple documents at once.
51
52 These email templates are also at the heart of the marketing campaign system
53 (see the ``marketing_campaign`` application), if you need to automate larger
54 campaigns on any OpenERP document.
55
56     **Technical note:** only the templating system of the original Power Email by Openlabs was kept.
57     """,
58     'data': [
59         'wizard/email_template_preview_view.xml',
60         'email_template_view.xml',
61         'res_partner_view.xml',
62         'ir_actions_view.xml',
63         'wizard/mail_compose_message_view.xml',
64         'security/ir.model.access.csv'
65     ],
66     'demo': [],
67     'installable': True,
68     'auto_install': True,
69     'images': ['images/1_email_account.jpeg','images/2_email_template.jpeg','images/3_emails.jpeg'],
70 }
71
72 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: