Ja ... nå jeg bruger mail() får jeg denne fejl
Warning: Bad Message destination in d:\wwwroot\diana\sendmail.php on
line 44
MEN øhm har jeg ALDRIG fået før? .. og php.ini virker fint!
Lidt kode:
<?php
session_start();
require("includes/functions.inc.php");
if(!CheckLogin($_SESSION["login"],$_SESSION["pass"])) {
header("location: logud.php");
exit;
}
if($_POST["action"] == "sender") {
if(strstr($_POST["sendTo"],"id")) {
$id_to_cl = substr($_POST["sendTo"], 2);
$where_cl = "WHERE id = ".$id_to_cl;
} elseif(strstr($_POST["sendTo"],"all")) {
$where_cl = "";
} elseif(strstr($_POST["sendTo"],"all")) {
$stat_to_cl = substr($_POST["sendTo"], 4);
$where_cl = "WHERE status = ".$stat_to_cl;
} else {
admin_header("Administrationen - Sende mails");
print "Fejl er fundet!!!<br>Tryk på tilbaws knappen!";
admin_footer();
exit;
}
openconn();
$res = sql("SELECT nick,email,status FROM user $where_cl");
closeconn();
$counter = mysql_num_rows($res);
while (list($to_mail, $to_name,$to_status) = mysql_fetch_row($res)) {
switch($to_status) {
case 0: $status = "Kommer helt sikkert :)"; break;
case 1: $status = "Ved det ikke helt endnu :O/"; break;
case 2: $status = "Desværre jeg kan ikke komme
"; break;
}
$sendte_mails .= $to_mail."<br>";
$ret = "Hejsa ".$to_name."\nDu er tilmeldt på min (Dianas) fest
side (
www.jyllands-fest.tk)\nOg du har lige i øjeblikket statussen
som: ".$status."\n\n\n";
$body_text = $ret.$_POST["main_mail"];
$subject = $_POST["subject_mail"];
$fra = $_POST["from_mail"];
mail($to_mail,
$subject,
$body_text,
"From: not@80.62.79.221\nReply-to: admin@natten-i.dk");
}
admin_header("Administrationen - Mails sendt");
print "<h2>Mails er sendt</h2>";
print "Dine mails er nu sendt til følgende ".$counter."
person(er)<br>";
print $sendte_mails;
print "<br><br><a href='sendmail.php'>Send flere</a>";
admin_footer();
exit;
}
// Herunder REN html som er klippet væk!
?>