Download the PHP package chronon/ymlp without Composer
On this page you can find all versions of the php package chronon/ymlp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package ymlp
CakePHP YMLP Component
NOTE: This project is deprecated and will most likely not be updated. It remains a working YMLP API solution for CakePHP 2.x apps, but will not be updated for CakePHP 3.x.
YMLP, or Your Mailing List Provider, is a email newsletter and marketing service with free and paid accounts, and a well written API.
This component interfaces a CakePHP app with YMLP's API.
You will need a free or paid account at YMLP, along with your username and API key (found at ymlp.com under "Configuration", "API"). Make sure to enable API access on YMLP's API page!
Compatibility:
Tested with CakePHP 2.8.x. Requires PHP 5 with cURL support.
Installation:
In your project composer.json
file:
Using git:
Configuration:
All configuration is in APP/Config/bootstrap.php.
Required: Load the plugin:
or
Required: Set your YMLP API key and username.
Required: Set your YMLP field mapping, which is your local field => YMLPField.
Usage:
Add the component to your controller:
Example: if you have a subscriber form with a field named email
, $this->request->data
would look
something like this:
To add this email address to YMLP using the component:
The $result
would be the response from YMLP's Contacts.Add()
method. See the YMLP docs for all
available API commands.
The available methods of this component are:
Example usage of the utility
method to view a list of configured YMLP fields. If you created
a form at YMLP to collect name, email address, and mailing address, you need to match your app's
fields with YMLP fields. The YMLP API Fields.GetList()
method can give you what you need.
Create a temporary method in your controller and use the component's utility
method:
Visit /utility and you should see a list of YMLP configured fields with field id, which you can use
to map to your app fields with the Ymlp.fieldMap
configuration array.