AW: [Typo3-UG Oesterreich] Return-Mail feature des Dmailers

Bernhard Kraft kraftb at mokka.at
Fri Aug 27 15:44:28 CEST 2004


Ing. Andreas Lercher wrote:

> Ja bitte mailen.
> Ich habe damit schon längere Zeit Probleme.
> Bitte Danke
> 


Funktioniert aber höchstwahrscheinlich nur mit "sendmail"

t3lib/class.t3lib_htmlmail.php

Funktion "sendTheMail" (zeile 375) ganz am Anfang

Aus:
--------------------snip-------------
             mail(    $this->recipient,
                $this->subject,
                $this->message,
                $this->headers );
--------------------snip-------------

sollte werden :

--------------------snip-------------
          if (strlen($this->returnPath)) {
             mail(    $this->recipient,
                $this->subject,
                $this->message,
                $this->headers,
                "-f".$this->returnPath);
          } else {
             mail(    $this->recipient,
                $this->subject,
                $this->message,
                $this->headers );
          }
--------------------snip-------------

ich weiss man hätts auch mit dem ?-operator lösen können.
tut euch keinen zwang an.

grüsse,
Bernhard
-----------------------------------------
Bernhard Kraft
<kraftb at mokka.at>

MOKKA MEDIENAGENTUR GMBH
Mariahilferstrasse 170
1150 Wien
T: 01 895 33 33 50
M: 0676 560 14 14
F: 01 895 33 33 20
www.mokka.at
-----------------------------------------





More information about the TYPO3-at mailing list