[MERGE] Removed duplicate view.
[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" : "E-Mail Templates",
25     "version" : "1.1",
26     "author" : "OpenERP,OpenLabs",
27     "website" : "http://openerp.com",
28     "category" : "Marketing",
29     'complexity': "expert",
30     "depends" : ['mail'],
31     "description": """
32 Email Templating (simplified version of the original Power Email by Openlabs)
33 =============================================================================
34
35 Lets you design complete email templates related to any OpenERP document (Sale
36 Orders, Invoices and so on), including sender, recipient, subject, body (HTML and
37 Text). You may also automatically attach files to your templates, or print and
38 attach a report.
39
40 For advanced use, the templates may include dynamic attributes of the document
41 they are related to. For example, you may use the name of a Partner's country
42 when writing to them, also providing a safe default in case the attribute is
43 not defined. Each template contains a built-in assistant to help with the
44 inclusion of these dynamic values.
45
46 If you enable the option, a composition assistant will also appear in the sidebar
47 of the OpenERP documents to which the template applies (e.g. Invoices).
48 This serves as a quick way to send a new email based on the template, after
49 reviewing and adapting the contents, if needed.
50 This composition assistant will also turn into a mass mailing system when called
51 for multiple documents at once.
52
53 These email templates are also at the heart of the marketing campaign system
54 (see the ``marketing_campaign`` application), if you need to automate larger
55 campaigns on any OpenERP document.
56
57 Technical note: only the templating system of the original Power Email by
58 Openlabs was kept
59
60     """,
61     "data": [
62         'wizard/email_template_preview_view.xml',
63         'email_template_view.xml',
64         'res_partner_view.xml',
65         'wizard/email_compose_message_view.xml',
66         'security/ir.model.access.csv'
67     ],
68     "demo": [
69         'res_partner_demo.yml',
70     ],
71     "installable": True,
72     "auto_install": False,
73     "certificate" : "00817073628967384349",
74     'images': ['images/1_email_account.jpeg','images/2_email_template.jpeg','images/3_emails.jpeg'],
75 }
76
77 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: