Bug #14363
closedsendnotifyemail - fromname
0%
Description
if the from name has specail chars the headers of the recieved mail are broken
just send an email with this function in class.tslib_content.php using the following string as FromName:
THE SKATOONS::Lars
and check your incoming mail
The problem is fixed when the fromname is wrapped into " FROMNAME "
(issue imported from #M426)
Updated by old_integra about 20 years ago
- class.tslib_content.php v3.7.0
- :5466
-- if ($email_from) {$headers[]='From: '.$email_fromName.' <'.$email_from.'>';}
++ if ($email_from) {$headers[]='From: '".$email_fromName."' <'.$email_from.'>';}
Updated by old_emax almost 20 years ago
There is a typo in the patch. The quotes and the doublequotes needs to be exchanged:
WRONG:
+ if ($email_from) {$headers[]='From: '".$email_fromName."' <'.$email_from.'>';}
RIGHT:
+ if ($email_from) {$headers[]='From: "'.$email_fromName.'" <'.$email_from.'>';}
emax.
Updated by Mathias Schreiber over 18 years ago
TYPO3 Version too old.
The reported version is no longer maintained.
If this bug still persists in 4.0.1, please re-open it again and set the field "Product Version" to the corresponding version.
Updated by Dimitri Koenig over 13 years ago
This is still an issue throughout all versions.
Updated by Ernesto Baschny over 13 years ago
- Status changed from Closed to New
- Target version deleted (
0) - TYPO3 Version changed from 3.7.0 to 4.5
Updated by Alexander Opitz over 10 years ago
- Status changed from New to Needs Feedback
- Is Regression set to No
Hi,
as this issue is very old. Does the problem still exists within newer versions of TYPO3 CMS (6.2.3)?
Updated by Alexander Opitz about 10 years ago
- Status changed from Needs Feedback to Closed
No feedback within the last 90 days => closing this issue.
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.