Chris: [HILFE] eMail Header verändern !

Beitrag lesen

Das kommt darauf an, was Du erreichen willst. Das solltest Du vielleicht erstmal beschreiben.

hier nochmal der code für den formmailer:

<?
include("config.php");
if($send == ""){
echo "<link rel=stylesheet href=$style type=text/css>";
echo "<body bgcolor=$bgcol>";
echo "<font face=verdana color=$fontcol><small><small><br>";
echo "<p align=center><br>Nur für Testzwecke gedacht!<br>Für eventuelle Schaden haftet der Sender!!!</p>
<center><form method=POST action=massenmailer.php?send=yes&aid=yes>
<table border=0 cellpadding=5 cellspacing=0 style=border-collapse: collapse bordercolor=$cellf1 width=350>
<tr>
<td align=right width=183><font face=verdana color=FFFFFF><small><small>Anzahl Mails:</td>
<td width=167><input type=text name=anzahl size=20 style="color:$cellf2; background-color:$cellf3; border-width:1; border-style=Double;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
</tr>
<tr>
<td align=right width=183><font face=verdana color=FFFFFF><small><small>Absender:</td>
<td width=167><input type=text name=absender size=20 style="color:$cellf2; background-color:$cellf3; border-width:1; border-style=Double;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
</tr>
<tr>
<td align=right width=183><font face=verdana color=FFFFFF><small><small>Empfänger:</td>
<td width=167><input type=text name=receiver size=20 style="color:$cellf2; background-color:$cellf3; border-width:1; border-style=Double;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
</tr>
<tr>
<td align=right width=183><font face=verdana color=FFFFFF><small><small>Betreff:</td>
<td width=167><input type=text name=betreff size=20 style="color:$cellf2; background-color:$cellf3; border-width:1; border-style=Double;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
</tr>
<tr>
<td align=right width=183><font face=verdana color=FFFFFF><small><small>Text:</td>
<td><textarea name=nachricht rows=3 cols=20 style="color:$cellf2; background-color:$cellf3; border-width:1; border-style=Double;"></textarea>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
</tr>
<tr>
<td align=right width=350 colspan=2>
<p align=center><input type=submit value=Submit name=B1 style="color:$cellf2; background-color:$cellf3; border-width:1; border-style=Double;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>

</table>
<p>&nbsp;</p>

</center>
</form>";
};

if($send == "yes"){

echo "<body bgcolor=$bgcol>";
echo "<center><font face=verdana color=$fontcol><small><small><br> >>> working >>> <br></br></center>";

$i = 0;

while ($i<$anzahl) {

$xtra    = "From:$absender\r\n";
$xtra   .= "Content-Type: text/html\r\nContent-Transfer-Encoding: 8bit\r\n";
$xtra   .= "X-Mailer: PHP ". phpversion();
mail("$receiver","$betreff","$nachricht","$xtra");
print "<center>Status: $i mails versendet<br></center>";
$i++;

}
echo "<link rel=stylesheet href=$style type=text/css>";
echo "<center><font face=verdana color=$fontcol><small><small><br>$i Nachrichten erfolgreich verschickt!</center>";
echo "<p>&nbsp</p>";
};

?>

so schicke ich jetzt eine email ab und guck mir den header an, so sieht der so aus (habe bestimmte stellen unkenntlich gemacht). habe drangeschrieben was weg soll, bzw. was ich gerne verändert hätte:

Received: from [212.78.204.19] (helo=mcoref02.st2.lyceu.net) <--- DAS SOLLTE WEG bzw. VERÄNDE WERDEN
by mx22.web.de with esmtp (WEB.DE 4.105 #282)
id 1DUNwA-0007M3-00
for xxx@web.de; Sat, 07 May 2005 13:57:38 +0200
Received: from wmphpf07.st2.lyceu.net (wmphpf07.st2.lyceu.net [212.78.204.67]) <-- <--- DAS SOLLTE WEG bzw. VERÄNDE WERDEN
by mcoref02.st2.lyceu.net (Postfix) with ESMTP id 2F8FEFEB34
for xxx@web.de; Sat, 7 May 2005 13:57:38 +0200 (CEST)
Received: by wmphpf07.st2.lyceu.net (Postfix, from userid 104036734)
id 237BF58E8; Sat, 7 May 2005 13:57:38 +0200 (CEST)
To: xxx@web.de
Subject: IK
From: bla@bla.de
Content-Type: text/html
X-Mailer: PHP 4.3.2
X-MM-Mail-From-Script: /xxx/xxx.php <--- DAS SOLLTE WEG bzw. VERÄNDERT WERDEN
X-Complains-To: xxx@lxxx.de <--- DAS SOLLTE WEG bzw. VERÄNDERT WERDEN
X-MM-Mail-From-IP: 172.181.101.253
Errors-To: xxx@xxx.de <--- DAS SOLLTE WEG bzw. VERÄNDERT WERDEN
Message-Id: 20050507115738.237BF58E8@wmphpf07.st2.lyceu.net
Date: Sat, 7 May 2005 13:57:38 +0200 (CEST)
Content-Transfer-Encoding: quoted-printable
Sender: xxx@xxx.de <--- DAS SOLLTE WEG bzw. VERÄNDERT WERDEN

Gruß,
Chris