diff --git wp-includes/pluggable.php wp-includes/pluggable.php
index 3e6fbe1..2ced529 100644
--- wp-includes/pluggable.php
+++ wp-includes/pluggable.php
@@ -214,8 +214,8 @@ function wp_mail( $to, $subject, $message, $headers = '', $attachments = array()
 
 	// (Re)create it, if it's gone missing
 	if ( ! ( $phpmailer instanceof PHPMailer ) ) {
-		require_once ABSPATH . WPINC . '/class-phpmailer.php';
-		require_once ABSPATH . WPINC . '/class-smtp.php';
+		require_once ABSPATH . WPINC . 'PHPMailer/class.phpmailer.php';
+		require_once ABSPATH . WPINC . 'PHPMailer/class.smtp.php';
 		$phpmailer = new PHPMailer( true );
 	}
 
@@ -2506,4 +2506,3 @@ function wp_text_diff( $left_string, $right_string, $args = null ) {
 	return $r;
 }
 endif;
-
