Skip to content

Instantly share code, notes, and snippets.

@ppadron
Created August 11, 2011 05:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ppadron/1138941 to your computer and use it in GitHub Desktop.
Save ppadron/1138941 to your computer and use it in GitHub Desktop.
<?php
require_once 'Akna.php';
$usuario = "john@example.com";
$senha = "minhasenha";
$akna = new Akna($usuario, $senha);
$contacts = $akna->emailMarketing->contacts;
$detalhes = array(
'empresa' => 'W3P Projetos Web',
'pais' => 'Brasil'
);
$contacts->add("Minha Lista de Usuários", "ppadron@w3p.com.br", $detalhes);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment