diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php index aa9b1adf47..3e6fbe14d6 100644 --- a/src/wp-includes/pluggable.php +++ b/src/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' );