This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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'); |