Is there a way to resend confirmation emails?

All you would really need to do is trigger wp_new_user_notification for each user. Notice you can filter the email message & subject with the wp_new_user_notification_email filter. I made a very simple plugin ages ago for adding an action for this to the wordpress user list. Really only made if for a client, no idea why … Read more

How to make registration activation email “to” field use registrant’s first name

Add the following code to your theme’s functions.php file if the plugin provides a filter for modifying email headers: function custom_user_registration_email_to_field( $email ) { $user_id = $email->get_user_id(); $user = get_userdata( $user_id ); if ( ! empty( $user->first_name ) ) { $email->set_to( $user->first_name . ‘ <‘ . $user->user_email . ‘>’ ); } return $email; } add_filter( … Read more

How do you disable the verification process of user email changes?

As mentioned in the ticket #16470 this confirmation feature: prevents accidental or erroneous email address changes from potentially locking users out of their account. so it’s good to keep that in mind before removing this feature. Here’s a little proof of concept for (single site) test installs. We still want to run send_confirmation_on_profile_email() because it … Read more

Welcome Email Going to Spam

Add SPF record to your DNS so emails from your server IP are classified as legitimate Edit. Do the above with what you said. “Would setting up a domain specific email address and changing the site owner email to ***@thedomain.com help keep these messages from going into spam folders?” This will be fine as it … Read more