Skip to content

Instantly share code, notes, and snippets.

@zachseifts
Created December 15, 2011 22:30
Show Gist options
  • Save zachseifts/1483234 to your computer and use it in GitHub Desktop.
Save zachseifts/1483234 to your computer and use it in GitHub Desktop.
<?php
$email_queue = drupal_queue_get('EmailQueue');
$email_queue->createQueue();
// Sending email to a user
$message = array(
'to' => '[email protected]',
'subject' => 'The subject of this email',
'body' => 'The body of this email',
'headers' => array('From' => '[email protected]'),
);
$email_queue->createItem($message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment