agustibr / wp-coop

1 stars 0 forks source link

Notificar usuaris de nou contingut via email #1

Closed agustibr closed 6 years ago

agustibr commented 12 years ago

function authorNotification($post_id) { global $wpdb; $post = get_post($post_id); $author = get_userdata($post->post_author);

$message = " Hi ".$author->display_name.", Your post, ".$post->post_title." has just been published. Well done! "; wp_mail($author->user_email, "Your article is online", $message); } add_action('publish_post', 'authorNotification');

agustibr commented 12 years ago

http://codex.wordpress.org/Function_Reference/wp_mail http://wp.smashingmagazine.com/2011/10/25/create-perfect-emails-wordpress-website/