Skip to content

Commit d480ece

Browse files
[ADD][MOV] mass_mailing_themes: move to community
Rationale Due to business decisions mass mailing themes are moved to community repository. As some other moves are planned, notably coupon or mobile UI that are coming to community repository, this makes sense to have mailing templates along with the mobile UI. Having a responsive and mailing-friendly mailing is now part of community standards. For any questions please refer to decision makers. Task-2903948 closes odoo#95379 X-original-commit: 58ec238 Related: odoo/enterprise#29142 Signed-off-by: Thibault Delavallee (tde) <[email protected]>
1 parent 4c70109 commit d480ece

File tree

197 files changed

+34857
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

197 files changed

+34857
-0
lines changed

.tx/config

+5
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,11 @@ file_filter = addons/mass_mailing_sms/i18n/<lang>.po
537537
source_file = addons/mass_mailing_sms/i18n/mass_mailing_sms.pot
538538
source_lang = en
539539

540+
[odoo-s15-3.mass_mailing_themes]
541+
file_filter = mass_mailing_themes/i18n/<lang>.po
542+
source_file = mass_mailing_themes/i18n/mass_mailing_themes.pot
543+
source_lang = en
544+
540545
[odoo-s15-3.membership]
541546
file_filter = addons/membership/i18n/<lang>.po
542547
source_file = addons/membership/i18n/membership.pot

addons/mass_mailing_themes/__init__.py

Whitespace-only changes.
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# -*- coding: utf-8 -*-
2+
# Part of Odoo. See LICENSE file for full copyright and licensing details.
3+
4+
{
5+
'name': 'Mass Mailing Themes',
6+
'summary': 'Design gorgeous mails',
7+
'description': """
8+
Design gorgeous mails
9+
""",
10+
'version': '1.1',
11+
'sequence': 110,
12+
'website': 'https://www.odoo.com/app/mailing',
13+
'category': 'Marketing/Email Marketing',
14+
'depends': [
15+
'mass_mailing',
16+
],
17+
'data': [
18+
'views/mass_mailing_themes_templates.xml'
19+
],
20+
'installable': True,
21+
'auto_install': True,
22+
'license': 'LGPL-3',
23+
}

0 commit comments

Comments
 (0)