$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>php - Changing default WPMU emails to be send thorugh Campaign Monitor Transactional emails|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

php - Changing default WPMU emails to be send thorugh Campaign Monitor Transactional emails

matteradmin8PV0评论

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.

Post a comment

comment list (0)

  1. No comments so far