prøv:
$contents_html = implode("", file("nyhedsbrev.html"));
$contents_txt = implode("", file("nyhedsbrev.txt"));
$mail_til = mysql_query("SELECT mail, mailformat FROM nyhedsbrev");
while ($mails = mysql_fetch_row($mail_til)) {
if($mails[1] == "htmlmail")
mail($mails[0], $emne, $contents_html, $Header . "\\r\\nContent-Type: text/html" );
else
mail($mails[0], $emne, $contents_txt, $Header . "\\r\\nContent-Type: text/plain" );
echo "mail til ".$mails[0]." sendt";
}
har fjernet for-løkken, som ikke bruges, og indsat en if-sætning
[Redigeret d. 15/08-04 16:45:34 af Jesper Kristensen]