Welcome email
-
Hi,
I try to modify subject and content of welcome email that users receive after user email validation.
I found on support forum this code that I pasted in a new plugin:
add_filter ( 'wppb_register_user_email_subject_without_admin_approval', 'wppbc_custom_email_confirmation_success_subject', 20, 4 ); function wppbc_custom_email_confirmation_success_subject($user_message_content, $email, $password, $user_message_subject, $context ){ $new_message = 'This is my new email body. This is your email address ' . $email . '. Thank you for registering.'; return $new_message;But, with this code I only success to modify subject.. Content of the mail remains the same..
Do you have an idea?
thank you in advance for your help
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
The topic ‘Welcome email’ is closed to new replies.