Feature #32132 » patch.diff
Mail.php → Mail1.php | ||
---|---|---|
protected function setSubject() {
|
||
if (isset($this->typoScript['subject'])) {
|
||
$subject = $this->typoScript['subject'];
|
||
} elseif ($this->requestHandler->has($this->typoScript['subjectField'])) {
|
||
$subject = $this->requestHandler->get($this->typoScript['subjectField']);
|
||
} else {
|
||
$subject = 'Formmail on ' . t3lib_div::getIndpEnv('HTTP_HOST');
|
||
}
|