summaryrefslogtreecommitdiff
path: root/addons/product_email_template/__manifest__.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/product_email_template/__manifest__.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/product_email_template/__manifest__.py')
-rw-r--r--addons/product_email_template/__manifest__.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/addons/product_email_template/__manifest__.py b/addons/product_email_template/__manifest__.py
new file mode 100644
index 00000000..02ad8b3d
--- /dev/null
+++ b/addons/product_email_template/__manifest__.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+
+{
+ 'name': 'Product Email Template',
+ 'depends': ['account'],
+ 'category': 'Accounting/Accounting',
+ 'description': """
+Add email templates to products to be sent on invoice confirmation
+==================================================================
+
+With this module, link your products to a template to send complete information and tools to your customer.
+For instance when invoicing a training, the training agenda and materials will automatically be sent to your customers.'
+ """,
+ 'data': [
+ 'views/product_views.xml',
+ 'views/mail_template_views.xml',
+ ],
+ 'license': 'LGPL-3',
+}