Changeset 52252 for trunk/src/wp-includes/PHPMailer/SMTP.php
- Timestamp:
- 11/26/2021 12:41:54 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/PHPMailer/SMTP.php
r51634 r52252 36 36 * @var string 37 37 */ 38 const VERSION = '6.5. 1';38 const VERSION = '6.5.3'; 39 39 40 40 /** … … 393 393 $socket_context 394 394 ); 395 restore_error_handler();396 395 } else { 397 396 //Fall back to fsockopen which should work in more places, but is missing some features … … 408 407 $timeout 409 408 ); 410 restore_error_handler();411 }409 } 410 restore_error_handler(); 412 411 413 412 //Verify we connected properly … … 697 696 * Send an SMTP DATA command. 698 697 * Issues a data command and sends the msg_data to the server, 699 * fin ializing the mail transaction. $msg_data is the message698 * finalizing the mail transaction. $msg_data is the message 700 699 * that is to be send with the headers. Each header needs to be 701 700 * on a single line followed by a <CRLF> with the message headers … … 1171 1170 $this->setError('No HELO/EHLO was sent'); 1172 1171 1173 return ;1172 return null; 1174 1173 } 1175 1174 … … 1183 1182 $this->setError('HELO handshake was used; No information about server extensions available'); 1184 1183 1185 return ;1184 return null; 1186 1185 } 1187 1186
Note: See TracChangeset
for help on using the changeset viewer.