grptx/yii2-newsletter-mailup

Newsletter module to Yii2 - mailup integration

v2.0.2 2018-01-25 09:57 UTC

This package is auto-updated.

Last update: 2024-04-18 22:39:27 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

Newsletter module to Yii2 - mailup integration

with this module you can collect email address and store in the mailup newsletter service

Installation

Preferred way to install is through Composer:

php composer.phar require grptx/yii2-newsletter-mailup:^1.0

Or, you may add

"grptx/yii2-newsletter-mailup": "^1.0"

to the require section of your composer.json file and execute php composer.phar update.

Configuration

...
'modules' => [
    'newsletter' => [
        'class' => 'grptx\newsletter\mailup\Module',
        'client_id'=>'<your-client-id>',
        'client_secret'=>'<your-client-secret>',
        'callback_uri'=>'http://127.0.0.1/index.php',
        'username'=>'<your-username>',
        'password'=>'<your-password>',
        'group'=><your-recipents-group>,
    ],
...
]

Usage

Go to your application in your browser

  • http://localhost/pathtoapp/newsletter
  • Or you can use an ajax call:
$.ajax({
    method:'post',
    url:'/newsletter/default/ajax-call',
    data:{
        email:'email',
        first_name:'first_name',
        last_name:'last_name'
    },
    success:function(data) {
        console.log(data);
        if(data[result]=='ok') {
            console.log('success');
        } else if(data['error']) {
            console.log(data['error']);            
        } else {
            console.log('generic error');
        }
    },
    error:function(data) {
        console.log(data);
    }
});