thesufi

send mail on theme activation

May 8th, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. function send_mail(){
  2.     $to = "youremail@domain.com"; //put your email address
  3.     $url = get_home_url();
  4.     $subject = "Theme activated on " . $url; //email subject
  5.     $message = "Theme is activated on " . $url;
  6.     wp_mail($to, $subject, $message);
  7. }
  8. add_action( 'after_setup_theme', 'send_mail' );
Add Comment
Please, Sign In to add comment