I edited the Add New User Profile page to add some custom fields (I'm not using multisite). My question is if there is a way to send out an activation/confirmation email to new users once I manually add them in?
Thanks!
|
I edited the Add New User Profile page to add some custom fields (I'm not using multisite). My question is if there is a way to send out an activation/confirmation email to new users once I manually add them in? Thanks! |
|||
|
|
|
stackexchange and found this for you! But you have to create a php page and do a little work, if you are familiar with WordPress than you can do this simply. I hope this answers your question and I hope this helps! |
|||||
|
|
If you add a new user via the backend a confirmation email is sent automatically, unless you check the skip checkbox. The new user shouldn't appear in the UI until confirmed |
|||||
|
|
Solved it by adding this code to save_extra_profile_fields() in add_action ( 'user_register', 'save_extra_profile_fields');
|
|||
|
|