Quickly send a new welcome email and password reset link for a user through the user's profile edit area.
As of April 2026, Resend Welcome Email is a WordPress users plugin with 1.0K+ active installations and a 3.7/5 rating from 9 reviews. It has been downloaded 22K+ times in total. Requires WordPress 4.3.1+ and PHP 5.3+. Available on WordPress.org since 2014. Last updated 8 years ago — may have compatibility concerns. Downloads are up 60% this week. Top alternative: User Switching.
This tool was developed to quickly send a user a new password reset link via email when they are having trouble logging in.
This extension has a public GitHub page where users can contribute fixes and improvements.
Tibor Repček – translation into slovak language (slovenčina)
Since I set up new members/users through the database, they do not register so the welcome email is not triggered to send. With this simple plugin, I can send/resend the welcome emails manually from the Users record.
Regarding a rating/comment about the reset password link not being set, please note that this plugin does not affect the content of the email. For that you will need to customize the email either through coding or another plugin.
https://wordpress.org/plugins/tags/welcome-email/
Put into the separate column a button
I do not understand in programming – did as I knew – added to the end of the plugin (before “}”)
//* ==START== Колонка в пользователях для просмотра АКТИВИРОВАННІХ EMAIL *//
add_filter( 'manage_users_columns', 'reg_confirm_column_0001' );
function reg_confirm_column_0001( $column ) {
$column['reg_confirm_column'] = 'Статус Регистрации';
return $column;
}
// создаем новую колонку // Колонка только создается и будет пустая
add_filter('manage_users_columns', 'reg_confirm_column_add_0002', 4);
function reg_confirm_column_add_0002( $columns ){
$num = 3; // после какой по счету колонки вставлять новые
$new_columns = array(
'reg_confirm_column' => 'Статус Регистрации',
);
return array_slice( $columns, 0, $num ) + $new_columns + array_slice( $columns, $num );
}
// заполняем колонку данными
add_filter( 'manage_users_custom_column', 'reg_confirm_column_add_data_0003', 10, 3 );
function reg_confirm_column_add_data_0003( $val, $column_name, $user_id ){
// global $wpdb;
$user_info = get_userdata($user_id);
switch ($column_name) {
case 'reg_confirm_column' :
if ($user_info->user_activation_key){
$link = esc_url( wp_nonce_url( add_query_arg( array(
'action' => 'resend_welcome_email',
'user_id' => $user_id,
), '' ),
"send_welcome_email_{$user_id}" )
);
return "Не Активирован <a href=" .$link .">Send New Welcome</a>";
}else{
return "Активирован ";
}
break;
default:
}
return $val;
}
//* ==END== Колонка в пользователях для просмотра АКТИВИРОВАННІХ EMAIL *//
Adds a link to user commands in the Users list “resend welcome email”. Did exactly what was expected of it, perfect.
Thanks
Unless you want to send yourself a “New user registration” notification email
I’m not a programmer or anything like that so i just look at the functionality and does it work and for what i needed it worked brilliantly – great plugin, thanks.
| WordPress | 4.3.1+ requiredTested up to 4.9.29 |
| PHP | 5.3+ required |
Plugin data sourced from WordPress.org. Analysis and metrics by PluginSift.