Actions
Bug #17233
closedt3lib_htmlmail should have empty default values
Start date:
2007-04-23
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.1
PHP Version:
4.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
In file class.t3lib_htmlmail.php, class t3lib_htmlmail have strange default values, like in the cartoon:
var $recipient = "recipient@whatever.com";
var $subject = "This is the subject";
var $from_email = "sender@php-mailer.com";
var $from_name = "Mr. Sender";
var $replyto_email = "reply@mailer.com";
var $replyto_name = "Mr. Reply";
var $organisation = "Your Company";
var $mailer = "PHP mailer"; // X-mailer
All of them should be empty:
var $recipient = ""; // recipient@whatever.com
var $subject = ""; // This is the subject
var $from_email = ""; // sender@php-mailer.com
var $from_name = ""; // Mr. Sender
var $replyto_email = ""; // reply@mailer.com
var $replyto_name = ""; // Mr. Reply
var $organisation = ""; // Your Company
var $mailer = ""; // PHP mailer
(issue imported from #M5482)
Files
Updated by Martin Kutschker over 17 years ago
I agree, the defaults are ridiculuous and its a PITA to make sure you empty them if you don't set them (eg the organization).
The only field which may still have a default is IMHO the mailer field. But I would change it to "TYPO3 x.y".
Updated by Oliver Hader about 17 years ago
Patch looks good: +1
Go ahead, Ingo! ;-)
Updated by Michael Stucki about 17 years ago
Hi Martin,
you can create your own RFC on the core list now! See http://news.typo3.org/news/article/core-development-mailinglist-now-open-for-community-involvement/
- michael
Updated by Benni Mack almost 17 years ago
Guys, I added this issue to my patch (see related to)
Actions