TYPO3 Flow Base DistributionPackagesApplications

Bug #32228

Cyrillic letters in mail aliases cause silent process fail

Added by Myroslav Holyak over 3 years ago.

Status:New Start date:2011-11-30
Priority:Should have Due date:
Assigned To:- % Done:

0%

Category:-
Target version:-

Description

Simple to reproduce:

$mail = t3lib_div::makeInstance('t3lib_mail_Message');
/* @var $mail t3lib_mail_Message */

$mail->setFrom(array($fromEmail => 'Cyrillic name like Петро - not OK'));
$mail->setTo(array($mail => 'Cyrillic name like Іван - not OK'));
$mail->setBcc(array('support@ruhomi.com', 'booking@hotelsbooking.com.ua'));
$mail->setSubject('Cyrillic subject - OK');
$mail->setBody('Plain cyrillic text - OK', 'text/plain');
$mail->send();

It nicely "delivers" into local file, but silently fails delivering via mail(). Not sure, but can be buggy for whole Unicode charset not only cyrillic area.

Also available in: Atom PDF