tractorcow/silverstripe-campaignmonitor

There is no license information available for the latest version (3.0.x-dev) of this package.

Simple implementation of the campaign monitor API within Silverstripe

Installs: 19 453

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 2

Forks: 11

Type:silverstripe-module

3.0.x-dev 2015-03-15 21:05 UTC

This package is auto-updated.

Last update: 2024-03-12 12:01:00 UTC


README

Simple implementation of the campaign monitor API within Silverstripe

Credits and Authors

License

  • TODO

Requirements

  • SilverStripe 3.0
  • PHP 5.3
  • Campaign Monitor PHP library 2.5.2 (not 3 or above! Yet! It'll break your code and make your clients grumpy).

Installation instructions

composer require tractorcow/silverstripe-campaignmonitor:"3.0.*@dev"

Examples

Using the API to set a destination list (SiteConfig extension)

Given a hard coded API key, allow the user to select a client from their account, and subsequently a list.

	function updateCMSFields(FieldList $fields) {

		// Load base object
		$resources = new CMResources("my api key");

		// Get clients under our account
		$clients = $resources->Clients()->map();
		$fields->addFieldToTab(
			'Root.CampaignMonitor',
			new DropdownField('Client', 'Client', $clients)
		);

		// check if client is available to select
		if($this->owner->Client && ($client = $resources->getClient($this->owner->Client))) {
			$lists = $client->Lists()->map();
			$fields->addFieldToTab(
				'Root.CampaignMonitor',
				new DropdownField('DefaultList', 'Default List', $lists)
			);
		}
	}

Saving a subscriber

Handling subscription details from a form submission

	public function subscribe($data, $form) {
		$listID = SiteConfig::current_site_config()->DefaultList;
		$resources = new CMResources("my api key");
		if($resources && $listID && $list = $resources->getList($listID)) {
			$this->addUserToList($data, $list);
			Director::redirect($this->Link('thanks'));
		}
		// Error handling here
	}

	protected function addUserToList($data, $list) {
		if(empty($list)) return;
		
		// Create subscriber
		$fields = array(
			'EmailAddress' => $data['Email'],
			'Name' => $data['FirstName'],
			'CustomFields' => array(
				'LastName' => $data['LastName'],
				'Company' => $data['Company'],
				'Phone' => $data['Phone'],
				'Mobile' => $data['Mobile']
			),
			'Resubscribe' => true,
			'RestartSubscriptionBasedAutoresponders' => true
		);
		$subscriber = new CMSubscriber(null, $fields, $list);
		$subscriber->Save();
	}