Skip to content

Instantly share code, notes, and snippets.

@zackkitzmiller
Created January 29, 2010 20:11
Show Gist options
  • Save zackkitzmiller/290067 to your computer and use it in GitHub Desktop.
Save zackkitzmiller/290067 to your computer and use it in GitHub Desktop.
$this->postmark->from('sender@domain.com', 'Jason Kruit');
$this->postmark->message_plain($message_plain);
$this->postmark->message_html($message_html);
foreach($users as $user) {
$this->postmark->to($user['email']);
$this->postmark->send();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment