demmonico/yii2-contact

Yii2 contact us module

dev-master 2017-04-06 20:47 UTC

This package is not auto-updated.

Last update: 2024-04-19 18:42:42 UTC


README

#Yii2 contact us module ##Description Yii2 contact us module

##Install

composer require demmonico/yii2-contact

##Configure

// main.php
'modules' => [
    'contact' => [
        'class' => 'demmonico\contact\Module',
        // configure
        'adminEmail' => 'demmonico@gmail.com',
        'mailerComponent' => 'mailer',
        'pageTitle' => 'APP_NAME - Contact Us',
    ],
],
// routes
'/contact' => 'contact/contact/index',
'/contact/<action:[\w-]+>' => 'contact/contact/<action>',

###Migrations

php ./yii migrate/up --migrationPath=@vendor/demmonico/yii2-contact/src/migrations