admin管理员组文章数量:1130349
I am trying to use CM transactional emails to work with wordpress default emails on WPMU installation. So far I've found the required hooks to do this, but i have a few questions.
add_action('init', function() {
remove_action('register_new_user', 'wp_send_new_user_notifications');
remove_action('network_site_new_created_user', 'wp_send_new_user_notifications');
remove_action('network_site_users_created_user', 'wp_send_new_user_notifications');
remove_action('network_user_new_created_user', 'wp_send_new_user_notifications');
remove_action('edit_user_created_user', 'wp_send_new_user_notifications');
add_action('register_new_user', 'ES_send_new_user_notifications');
});
I'm using remove_action to remove default notifications, but I am not sure how to get additional information about the user in ES_send_new_user_notifications
function ES_send_new_user_notifications($user_id, $notify = 'user') {
// I need blog id to which user is registered
// I need password in plain text to be available
// then send everything to Campaign Monitor to be delivered to user
}
All those hooks have user_id available as parameter.
Any help would be appreciated.
I am trying to use CM transactional emails to work with wordpress default emails on WPMU installation. So far I've found the required hooks to do this, but i have a few questions.
add_action('init', function() {
remove_action('register_new_user', 'wp_send_new_user_notifications');
remove_action('network_site_new_created_user', 'wp_send_new_user_notifications');
remove_action('network_site_users_created_user', 'wp_send_new_user_notifications');
remove_action('network_user_new_created_user', 'wp_send_new_user_notifications');
remove_action('edit_user_created_user', 'wp_send_new_user_notifications');
add_action('register_new_user', 'ES_send_new_user_notifications');
});
I'm using remove_action to remove default notifications, but I am not sure how to get additional information about the user in ES_send_new_user_notifications
function ES_send_new_user_notifications($user_id, $notify = 'user') {
// I need blog id to which user is registered
// I need password in plain text to be available
// then send everything to Campaign Monitor to be delivered to user
}
All those hooks have user_id available as parameter.
Any help would be appreciated.
本文标签: phpChanging default WPMU emails to be send thorugh Campaign Monitor Transactional emails
版权声明:本文标题:php - Changing default WPMU emails to be send thorugh Campaign Monitor Transactional emails 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749084933a2313622.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论