Rating: 5 stars
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://www.ads-software.com/plugins/tags/welcome-email/
Rating: 5 stars
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 *//
]]>
Rating: 5 stars
Adds a link to user commands in the Users list “resend welcome email”. Did exactly what was expected of it, perfect.
Thanks
]]>Rating: 1 star
Unless you want to send yourself a “New user registration” notification email
]]>Rating: 5 stars
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.
]]>Rating: 1 star
This sends the emails, but unfortunately they are missing the link to reset the password; it’s just blank where the url should be.
]]>Rating: 1 star
Sorry the plugin doesn’t work for me WP 4.5.2.
The plugin doesn’t send any emails
Rating: 5 stars
Thanks, this makes user management much easier for site admins!
]]>Rating: 5 stars
Thx for the solution.
I use this plugin for WordPress Site Network and Namaste LMS. How solution for trouble with registration student.