X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=addons%2Femail_template%2F__openerp__.py;h=10f5be678b8c911c2c7f8627892bf4159d868cb7;hb=a9697c5404a53deada56432f8e9a37f3412257f7;hp=06c74d20c79874111cb54841c83ef8599c8555e3;hpb=f989fe70f80846f2986562b8cf09bbda10d099a9;p=odoo%2Fodoo.git diff --git a/addons/email_template/__openerp__.py b/addons/email_template/__openerp__.py index 06c74d2..10f5be6 100644 --- a/addons/email_template/__openerp__.py +++ b/addons/email_template/__openerp__.py @@ -3,7 +3,7 @@ # # OpenERP, Open Source Management Solution # Copyright (C) 2009 Sharoon Thomas -# Copyright (C) 2010-2010 OpenERP SA () +# Copyright (C) 2010-Today OpenERP SA () # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,28 +21,57 @@ ############################################################################## { - "name" : "Email Template for OpenERP", - "version" : "0.7 RC", - "author" : "Openlabs", + "name" : "E-Mail Templates", + "version" : "1.1", + "author" : "OpenERP,OpenLabs", "website" : "http://openerp.com", - "category" : "Tools", - "depends" : ['marketing', 'base_tools'], + "category" : "Marketing", + 'complexity': "expert", + "depends" : ['mail'], "description": """ - Email Template is extraction of Power Email basically just to send the emails. +Email Templating (simplified version of the original Power Email by Openlabs) +============================================================================= + +Lets you design complete email templates related to any OpenERP document (Sale +Orders, Invoices and so on), including sender, recipient, subject, body (HTML and +Text). You may also automatically attach files to your templates, or print and +attach a report. + +For advanced use, the templates may include dynamic attributes of the document +they are related to. For example, you may use the name of a Partner's country +when writing to them, also providing a safe default in case the attribute is +not defined. Each template contains a built-in assistant to help with the +inclusion of these dynamic values. + +If you enable the option, a composition assistant will also appear in the sidebar +of the OpenERP documents to which the template applies (e.g. Invoices). +This serves as a quick way to send a new email based on the template, after +reviewing and adapting the contents, if needed. +This composition assistant will also turn into a mass mailing system when called +for multiple documents at once. + +These email templates are also at the heart of the marketing campaign system +(see the ``marketing_campaign`` application), if you need to automate larger +campaigns on any OpenERP document. + +Technical note: only the templating system of the original Power Email by +Openlabs was kept + """, - "init_xml": ['email_template_scheduler_data.xml'], - "update_xml": [ - 'security/email_template_security.xml', - 'email_template_workflow.xml', - 'email_template_account_view.xml', + "data": [ + 'wizard/email_template_preview_view.xml', 'email_template_view.xml', - 'email_template_mailbox_view.xml', - 'wizard/email_template_send_wizard_view.xml', + 'res_partner_view.xml', + 'wizard/email_compose_message_view.xml', 'security/ir.model.access.csv' ], + "demo": [ + 'res_partner_demo.yml', + ], "installable": True, - "active": False, + "auto_install": False, "certificate" : "00817073628967384349", + 'images': ['images/1_email_account.jpeg','images/2_email_template.jpeg','images/3_emails.jpeg'], } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: