21 lines
641 B
Python
21 lines
641 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Newsletter Subscribe SMS Template',
|
|
'summary': 'Attract visitors to subscribe to mailing lists',
|
|
'description': """
|
|
This module adds a new template to the Newsletter Block to allow
|
|
your visitors to subscribe with their phone number.
|
|
""",
|
|
'version': '1.0',
|
|
'category': 'Website/Website',
|
|
'depends': ['website_mass_mailing', 'mass_mailing_sms'],
|
|
'data': [
|
|
'views/snippets/snippets_templates.xml',
|
|
'data/ir_model_data.xml',
|
|
],
|
|
'auto_install': True,
|
|
'license': 'LGPL-3',
|
|
}
|