hi,
ich habe ein formular zum mail versenden:
<?
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;"> </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;"> </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;"> </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;"> </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> </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;"> </td>
</table>
<p> </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) {
mail("$receiver","$betreff","$nachricht","From:$absender");
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> </p>";
};
?>
soweit so gut. aber wie kann ich jetzt eine html mail erstellen?
zusätzlich wollte ich fragen ob man den header beeinflussen kann :)
danke im vorraus,
martin.