Skip to content

Instantly share code, notes, and snippets.

@arpitr
Created December 22, 2015 10:59
Show Gist options
  • Save arpitr/e1f47e54ea52434b5e87 to your computer and use it in GitHub Desktop.
Save arpitr/e1f47e54ea52434b5e87 to your computer and use it in GitHub Desktop.
drupal_hook_sample
/**
* Implements hook_node_insert
*/
function mymodulename_node_insert($node) {
// Get Node Author.
$author = $node->author;
// Use Drupal Mail
send_mail($to=$author);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment