I am using custom user registration and log in in WordPress. Now I want to send a mail containing activation link to the registered user so that they can complete their registration after clicking that link.
Leave a Reply
You must be logged in to post a comment.
You can do it something like by adding this code in
fucntions.php
yoursend_activation_link()
functon inadd_action ( 'user_register', 'send_activation_link');
user_register
is a hook, which runs at the end of user creationIts not a complete answer but just to give an idea to work something like this
You can use “User Activation E-mail” WordPress plugin to do that.
Here is the link: http://wordpress.org/plugins/user-activation-email/
I hope this will help you!