Created
December 15, 2011 22:30
-
-
Save zachseifts/1483236 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $email_queue = drupal_queue_get('EmailQueue'); | |
| $email_queue->createQueue(); | |
| // Sending email to a user | |
| $message = array( | |
| 'to' => 'user@example.com', | |
| 'subject' => 'The subject of this email', | |
| 'body' => 'The body of this email', | |
| 'headers' => array('From' => 'user2@example.com'), | |
| ); | |
| $email_queue->createItem($message); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment