diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index aa9b1adf47..3e6fbe14d6 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -478,7 +478,7 @@ function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() // Send! try { - return $phpmailer->Send(); + return $phpmailer->send(); } catch ( phpmailerException $e ) { $mail_error_data = compact( 'to', 'subject', 'message', 'headers', 'attachments' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index b82e8165f9..cc8c8c2d6b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39689'; +$wp_version = '4.8-alpha-39691'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.