New user notification – Email not sent
-
Hi,
I’m using my own theme-my-login-custom.php with a set of functions. One of them is to display a thank you message after registration. The way I’m doing it is by the following function
function tml_new_user_registered( $user_id ) { echo '<p>Thank you for registering.</p><p>Your account has been created and a verification email has been sent to your registered email address.</p><br/><p>The Team</p>'; exit; } add_action( 'tml_new_user_registered', 'tml_new_user_registered' );
But the welcome email is not being sent. I know is because of the exit function but if I don exit my message is not displayed.
How can I display the message above and sent the email?
Thanks a lot for this great plugin
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘New user notification – Email not sent’ is closed to new replies.