Changeset 56484
- Timestamp:
- 08/29/2023 01:44:54 PM (15 months ago)
- Location:
- trunk/src/wp-includes/PHPMailer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/PHPMailer/PHPMailer.php
r55557 r56484 751 751 * @var string 752 752 */ 753 const VERSION = '6.8. 0';753 const VERSION = '6.8.1'; 754 754 755 755 /** … … 796 796 * 797 797 * Background: mail() will sometimes corrupt messages 798 * with headers headerslonger than 65 chars, see #818.798 * with headers longer than 65 chars, see #818. 799 799 * 800 800 * @var int -
trunk/src/wp-includes/PHPMailer/SMTP.php
r55557 r56484 36 36 * @var string 37 37 */ 38 const VERSION = '6.8. 0';38 const VERSION = '6.8.1'; 39 39 40 40 /** … … 705 705 * Issues a data command and sends the msg_data to the server, 706 706 * finalizing the mail transaction. $msg_data is the message 707 * that is to be sen dwith the headers. Each header needs to be707 * that is to be sent with the headers. Each header needs to be 708 708 * on a single line followed by a <CRLF> with the message headers 709 709 * and the message body being separated by an additional <CRLF>. … … 733 733 734 734 /* To distinguish between a complete RFC822 message and a plain message body, we check if the first field 735 * of the first line (':' separated) does not contain a space then it _should_ be a header and we will735 * of the first line (':' separated) does not contain a space then it _should_ be a header, and we will 736 736 * process all lines before a blank line as headers. 737 737 */
Note: See TracChangeset
for help on using the changeset viewer.