Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Correct, that is an encoding issue. Without "Content-Transfer-Encoding" I have no idea what encoding your mail client is interpreting the email as. That information should be available when using "View Source" in your mail client.If you compare the top code (PHP 7) with the bottom code (PHP , you can see that the only thing that's actually changed between the two is that, under PHP 8, = signs are replaced with =3D and hyphens are replaced with -= . Also, www.w3.org is replaced with http://www.= w3.org.
The encoding used by PHPMailer is dependent on the contents of the email. The code in our PHPMailer is perfectly valid on PHP 8.0 and even 8.1 (this has been thoroughly tested).means it's using "Quoted Printable Encoding" but CBPHPMailer.php shows it's supposed to be using 8bit.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.