black-lamp / yii2-newsletter
Module for subscribe on newsletter
Installs: 288
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 2
Type:yii2-extension
Requires
- yiisoft/yii2: >=2.0.4
- yiisoft/yii2-bootstrap: *
This package is not auto-updated.
Last update: 2024-10-26 20:27:09 UTC
README
Module for subscribe on newsletter by e-mail or phone number
Installation
Run command
composer require black-lamp/yii2-newsletter
or add
"black-lamp/yii2-newsletter": "2.*.*"
to the require section of your composer.json.
Applying migrations
yii migrate --migrationPath=@vendor/black-lamp/yii2-newsletter/common/migrations
Add modules to application config
Frontend module for subscriptions
'modules' => [ // ... 'newsletter' => [ 'class' => bl\newsletter\frontend\Newsletter::className() ], ]
Backend module for control of list of the clients
'modules' => [ // ... 'newsletter' => [ 'class' => bl\newsletter\backend\Newsletter::className() ], ]