library aweber_class
A simple PHP class to interact with the AWeber API
stevewaffles/aweber_class
A simple PHP class to interact with the AWeber API
- Wednesday, August 5, 2015
- by _waffles
- Repository
- 1 Watchers
- 1 Stars
- 5 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
AWeber class to add subscribers to lists
Basic Usage:
- Open aweberclass.php and add your keys
- Profit
Starter code:
findList($name='LIST_NAME_GOES_HERE');
//create new subscriber
$subscriber = array(
'email' => $_POST['email'],
'name' => $_POST['first_name'].' '.$_POST['last_name']
);
//add them to the list
$add_user = $app->addSubscriber($subscriber, $list);
?>
dev-master
9999999-dev
A simple PHP class to interact with the AWeber API
Sources
Download
The Requires