Project

General

Profile

Actions

Bug #23358

closed

t3lib_htmlmail, quoted printable and links with ids

Added by Stefan Jelner over 13 years ago. Updated almost 10 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2010-08-05
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.3
PHP Version:
4.3
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

if you send a plain text email with t3lib_htmlmail and the default settings and the email contains u URL with an equal sign followed by a number, then email-clients might think it is a quoted printable representation.

to reproduce it:

$mailer = t3lib_div::makeInstance('t3lib_htmlmail');
$mailer->start();
$mailer->subject = 'Test';
$mailer->from_email = '';
$mailer->setPlain('index.php?id=9');
$mailer->send('');

i open the email in Thunerbird and i see:
index.php?id=
to fix it, you only need to replace all equal signs with =3D

$mailer = t3lib_div::makeInstance('t3lib_htmlmail');
$mailer->start();
$mailer->subject = 'Test';
$mailer->from_email = '';
$mailer->setPlain(str_replace('=','=3D','index.php?id=9'));
$mailer->send('');

(issue imported from #M15367)

Actions #1

Updated by Alexander Opitz about 10 years ago

  • Status changed from New to Needs Feedback
  • Target version deleted (0)
  • TYPO3 Version set to 4.3
  • Is Regression set to No

Hi,

as this issue is very old. Does the problem still exists within newer versions of TYPO3 CMS (6.1.7)?

Actions #2

Updated by Alexander Opitz almost 10 years ago

  • Status changed from Needs Feedback to Closed

No feedback within the last 90 days => closing this ticket.

If you think that this is the wrong decision or experience this issue again, then please write to the mailing list typo3.teams.bugs with issue number and an explanation or open a new ticket and add a relation to this ticket number.

Actions

Also available in: Atom PDF