2017 © Pedro Peláez
 

library aweber_class

A simple PHP class to interact with the AWeber API

image

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

The README.md

AWeber class to add subscribers to lists

Basic Usage:

  1. Open aweberclass.php and add your keys
  2. 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);
?>

The Versions

05/08 2015

dev-master

9999999-dev

A simple PHP class to interact with the AWeber API

  Sources   Download

The Requires

  • php >=5.4.0