Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bropwnz0r/yii2-mailwizz


https://github.com/bropwnz0r/yii2-mailwizz

mailwizz php yii2 yii2-extension

Last synced: 26 days ago
JSON representation

Awesome Lists containing this project

README

        

mailwizz-php-sdk
================
#Install
> Note: Check the [composer.json](https://github.com/kartik-v/yii2-date-range/blob/master/composer.json) for this extension's requirements and dependencies.
Read this [web tip /wiki](http://webtips.krajee.com/setting-composer-minimum-stability-application/) on setting the `minimum-stability` settings for your application's composer.json.

Either run

```
$ php composer.phar require yii2-mailwizz/mailwizz "dev-master"
```

or add

```
"yii2-mailwizz/mailwizz": "dev-master"
```
to the ```require``` section of your `composer.json` file.

#USAGE
Please see the examples folder for usage and available endpoints.

#EXAMPLE Component
```
'ApiUrl',
'publicKey' => 'Pub_key',
'privateKey' => 'Private_key',
'components' => array(
'cache' => array(
'class' => File::class,
'filesPath' => dirname(__FILE__) . '/../MailWizzApi/Cache/data/cache', // make sure it is writable by webserver
)
),
]);
Base::setConfig($config);
}
}
```