diff --git a/event_mail/README.rst b/event_mail/README.rst
new file mode 100644
index 000000000..844d1641a
--- /dev/null
+++ b/event_mail/README.rst
@@ -0,0 +1,33 @@
+==============
+Event Mail v10
+==============
+Event mail adds the functionality to send email notification to the customer at the time of event order confirmation.
+
+Features
+========
+* Customize your own templates for mail.
+* Default template for order confirmation.
+* Send notification email to customer when an event order is confirmed.
+
+License
+=======
+GNU LESSER GENERAL PUBLIC LICENSE, Version 3 (LGPLv3)
+(http://www.gnu.org/licenses/agpl.html)
+
+Bug Tracker
+===========
+Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
+
+
+Contributors
+============
+
+* Avinash Nk
+
+
+Maintainer
+==========
+
+This module is maintained by Cybrosys Technologies.
+
+For support and more information, please visit https://www.cybrosys.com
diff --git a/event_mail/__init__.py b/event_mail/__init__.py
new file mode 100644
index 000000000..ed7da4c8c
--- /dev/null
+++ b/event_mail/__init__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+###################################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+# Copyright (C) 2018-TODAY Cybrosys Technologies().
+# Author: Avinash Nk()
+#
+# This program is free software: you can modify
+# it under the terms of the GNU Affero General Public License (AGPL) as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+###################################################################################
+from . import models
diff --git a/event_mail/__manifest__.py b/event_mail/__manifest__.py
new file mode 100644
index 000000000..62b402070
--- /dev/null
+++ b/event_mail/__manifest__.py
@@ -0,0 +1,42 @@
+# -*- coding: utf-8 -*-
+###################################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+# Copyright (C) 2018-TODAY Cybrosys Technologies().
+# Author: Avinash Nk()
+#
+# This program is free software: you can modify
+# it under the terms of the GNU Affero General Public License (AGPL) as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+###################################################################################
+{
+ 'name': 'Event Mail',
+ 'version': '10.0.1.0.0',
+ 'summary': """Send Email Notification to the Customer at the Time of Event Order Confirmation.""",
+ 'description': """Send Email Notification to the Customer at the Time of Event Order Confirmation.""",
+ "category": "Tools",
+ 'author': 'Cybrosys Techno Solutions',
+ 'company': 'Cybrosys Techno Solutions',
+ 'maintainer': 'Cybrosys Techno Solutions',
+ 'website': "https://www.cybrosys.com",
+ 'depends': ['event_management'],
+ 'data': ['data/event_mail_template.xml',
+ 'views/event_mail.xml',
+ ],
+ 'demo': [
+ ],
+ 'images': ['static/description/banner.jpg'],
+ 'license': 'AGPL-3',
+ 'installable': True,
+ 'application': False,
+}
diff --git a/event_mail/data/event_mail_template.xml b/event_mail/data/event_mail_template.xml
new file mode 100644
index 000000000..790650def
--- /dev/null
+++ b/event_mail/data/event_mail_template.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+ Event Confirmation - Send by Email
+ ${(object.create_uid.email and '%s <%s>' % (object.create_uid.name, object.create_uid.email) or '')|safe}
+ ${object.create_uid.company_id.name} Event Confirmation (Ref ${object.name or 'n/a'})
+ ${object.partner_id.id}
+
+ ${object.create_uid.email|safe}
+
+ Event_${(object.name or '').replace('/','_')}}
+ ${object.partner_id.lang}
+ Dear ${object.partner_id.name}
+% if object.partner_id.parent_id:
+ (${object.partner_id.parent_id.name})
+% endif
+,
+Your event order is confirmed.(${object.name})
+Thank you,
+% if object.create_uid and object.create_uid.signature:
+ ${object.create_uid.signature | safe}
+% endif
+]]>
+
+
+
+
+ Event Confirmation Email
+ ${object.subject}
+
+
+
+
+ % set record = ctx.get('record')
+ % set company = record and record.company_id or user.company_id
+
+
+
+
+
+
+
+
+
+
+
+ Event ${object.record_name}
+
+ |
+
+
+ |
+
+
+ |
+
+
+
+
+
+
+
+
+ ${object.body | safe}
+ |
+
+
+ |
+
+
+
+
+
+
+ |
+
+
+
+ Powered by Odoo.
+ |
+
+
+
+
+