Skip to content

Instantly share code, notes, and snippets.

@ryanbriones
Created April 27, 2010 14:51
Show Gist options
  • Select an option

  • Save ryanbriones/380808 to your computer and use it in GitHub Desktop.

Select an option

Save ryanbriones/380808 to your computer and use it in GitHub Desktop.
Send via Mad Mimi to list with MadMailer
<?php
$mailer = new MadMailer('YOURUSERNAME', 'XXXXXXXX');
$params = array(
'promotion_name' => 'My Awesome Promotion',
'subject' => 'You Gotta Read This',
'from' => 'noreply@example.com',
'username' => 'YOURUSERNAME',
'api_key' => 'XXXXXXXX',
'list_name' => 'VIPs',
'raw_html' => 'foo [[unsubscribe]] [[tracking_beacon]]'
);
$mailer->DoRequest("https://madmimi.com/mailer/to_list", 'POST', false, false, $params);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment