skymount / yii2-email-subscriber
CMS Subscriber plugin
v1.0.1
2019-12-11 15:39 UTC
Requires
- php: >=7.3
- himiklab/yii2-recaptcha-widget: ^2.1
- yiisoft/yii2: ~2.0.30
This package is auto-updated.
Last update: 2025-03-08 18:03:09 UTC
README
CMS plugin
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist skymount/yii2-email-subscriber "*"
or add
"skymount/yii2-email-subscriber": "*"
to the require section of your composer.json
file.
Proccess migration
./yii migrate/up -p @vendor/skymount/yii2-email-subscriber/migrations
Usage
Once the extension is installed, simply use it in your code by :
'modules' => [
...
'subscriber' => [
'class' => 'skymount\messaging\Module',
],
],
<div class="container">
{{ use('skymount/messaging/EmailSubscriber') }}
{{ email_subscriber_widget() }}
</div>