Yes, you can Change email address by using wp_mail function.
You can check this how to do this
http://www.butlerblog.com/2011/07/14/changing-the-wp_mail-from-address-with-a-plugin/
Use this plugin for user management it supports email address when new user registers
https://wordpress.org/plugins/wp-members/
Use this code in your functions.php file.
function so174837_registration_email_alert( $user_id ) {
$user = get_userdata( $user_id );
$email = $user->user_email;
$message = $email . ' has registered to your website.';
wp_mail( '[email protected]', 'New User registration', $message );
}
add_action('user_register', 'so174837_registration_email_alert');
Related Posts:
- How to disable the “Your site has updated to WordPress x.y.z” admin email?
- Send Admin Emails to Multiple Email Addresses
- How to remove administrator role in settings -> general -> New User Default Role?
- turn off new user registration emails
- Send automatic mail to Admin when user/member changes/adds profile
- How can ‘admin_email’ be set?
- Turn off admin emails for new user registrations
- Get email address of type Administrator
- How do I enable new account notification emails (to the administrator)?
- Send Notifications to All Admins
- Create a Meta Box in the Admin User Screen?
- Send email to Admin when user/member updates specific user/member data
- Protect custom php file with login
- Can I mass change all admin emails for a multisite instance?
- When admin changes a password for a registered user, I don’t want to send a password change email to users
- Keep Logged in Users out of Admin Panel
- How can all E-mails be sent with BCC copy to Admin?
- When admin approves a registered user, I don’t want to send a notification email to users
- how to disable the e-mail verification on wp-admin/options-general.php multisite admin e-mail
- How to disable the “Your site has updated to WordPress x.y.z” admin email?
- Buddypress send admin notification email when new subscriber registers
- New User Notification – Setting Email
- Woo Commerce Settings for Check-out Form [closed]
- How to change the default registration email ? (plugin and/or non-plugin)
- What are the standard admin CSS id/class tags?
- Admin Ajax is returning 0
- Add custom column to Users admin panel
- wp_verify_nonce vs check_admin_referer
- Add a Separator to the Admin Menu?
- How to determine whether we are in add New page/post/CPT or in edit page/post/CPT in wordpress admin?
- how to know if admin is in edit page or post [duplicate]
- Modal window from within WordPress admin
- Where in WP can I check history or log of updates of plugins etc?
- Adding a custom admin page
- How does admin-ajax.php work?
- How to remove entire admin menu?
- How do I remove dashboard access from specific user roles?
- Disable user registration password email
- How can I speed up my WP admin section?
- How to pass parameters to admin_notices?
- Admin: very slow edit page caused by core meta query
- if admin is logged in
- Search posts by ID in admin
- How to Change the Default Home Page for the WordPress Dashboard?
- Setting admin edit panels & metaboxes positions and visibility for ALL users and admins
- Find out which moderator approved comment?
- The website cannot display the page
- How To Remove WordPress Version From The Admin Footer
- Sort pages in loop by admin’s page attributes order field?
- Edit “thank you for creating with WordPress” in version 3.3.1
- Hide other users’ posts in admin panel
- Set Default Admin Colour For All Users
- Editor Styles and Typekit
- How do I customise the new user welcome email
- WordPress admin stylesheet
- This CSS Stuffing Works, But Is This A Good Practice?
- Is it possible to create a WordPress tour? V3.3.1
- Send user activation email when programmatically creating user
- Securing Admin Accounts – Username Discovery
- User Without Email?
- is_admin() returns true when using admin-ajax.php from front end script
- How to save dismissable notice state in WP 4.2?
- How do I optimize a custom post type admin page with 25,000 posts?
- Settings API – adding setting fields dynamically?
- Disable Media Uploads to non Admin Users
- How do I load a CSS style into WordPress admin area only?
- Allowing admin-ajax.php to receive “application/json” instead of “x-www-form-urlencoded”
- Can an admin check passwords of registered users?
- How can I target WordPress 3.8 new interface MP6 with CSS?
- Notification that the admin is online
- Does wordpress create activity, update logs?
- sort child pages on admin
- How-to make the admin area mobile friendly [closed]
- How to remove list view from media library?
- Load plugin scripts and styles only on plugin page
- Plugin to remove Admin menu items based on user role?
- How to obtain the user ID of the current profile being edited in WP-Admin?
- 3.3: How do you hide the new dashboard welcome panel?
- Add my own button next to “Screen options” and “Help” in the admin
- WP List Table custom quick edit box – post meta data missing and columns change on submit
- Settings API – easiest way of validating checkboxes?
- Are there any action like ‘init_frontend’
- How to set up User email verification after Signup?
- Should I use is_admin() inside ‘admin_init’ hook callback
- Sends out email to admin
- How do I set up the defualt page icon for admin menu?
- Prevent author from changing their posts if admin has modified
- Allow Duplicate Email Address for Different Users
- Cannot access admin panel
- Make A WordPress Page Accessible To Admins Only, Redirect Other User Roles
- Disable all https in WordPress
- localhost/wp-admin on my local redirects to production site’s /wp-admin
- Email confirmation on registration
- Is there a more efficient admin search function/plugin?
- Can a users profile be put under the dashboard menu
- WordPress Admins or Roles per Page
- Styling Shortcodes in Visual Editor
- initial sort order for a sortable custom column in admin
- Showing WP_Error message with admin_notice action hook
- WordPress admin screen very slow / timing out when editing or adding a new page/custom post