Skip to content

Instantly share code, notes, and snippets.

View mrky007's full-sized avatar

Marko Jezernik mrky007

View GitHub Profile
@mrky007
mrky007 / wordpress-woocommerce-send-user-meta-to-admin.php
Last active March 6, 2018 11:24
WordPress / WooCommerce: notify user admin when user registers and send user meta values if needed
// Set content type to html if needed
function wp_set_content_type(){
return "text/html";
}
add_filter( 'wp_mail_content_type','wp_set_content_type' );
function admin_registration_email_alert( $user_id ) {
// Send to website admin
$to = get_option('admin_email');