Skip to content

Instantly share code, notes, and snippets.

@sareiodata
Created August 21, 2012 15:24
Show Gist options
  • Save sareiodata/3416524 to your computer and use it in GitHub Desktop.
Save sareiodata/3416524 to your computer and use it in GitHub Desktop.
Change the Email users receive after registration
function pb_custom_email(){
$content = <<<EOD
<h1>Hello to our site</h1>
<p>Something interesting to tell to our new registered user</p>
<img src="https://www.google.com/images/srpr/logo3w.png" alt="the google logo" />
EOD;
return $content
}
add_filter("wppb_register_email_content", "pb_custom_email");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment