Created
August 21, 2012 15:24
-
-
Save sareiodata/3416524 to your computer and use it in GitHub Desktop.
Change the Email users receive after registration
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
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