Dean,
Do you know how to edit the server msg sent back in that.
here's my code to collect that info and spit it into a database. It works, great. now, I need to filter the msg to find the subject and place the user email and info in another table with the subject, and server msg.
$query212 = "select email,fname,lname from lm_users where (id = '$id')";
$db2382 = "MYDATABASE";
$result11123 = mysql_db_query($db2382, $query212);
if($result11123)
{
while ($r = mysql_fetch_array($result11123))
{
$theirfname = $r["fname"];
$theirlname = $r["lname"];
$theiremail = $r["email"];
}
}
mysql_query("insert into lm_trackbounces (id,firstname,lastname,emailaddress,msg,date) values('$id','$theirfname','$theirlname','$theiremail','".addslashes($msg)."','".date("F j, Y, g:i a")."');");
This works, great I had to re-write some of your code. , but thanks.
I need to know in reference a few things if you can.
I know how to filter the msg, and find the subject and strip it out, and all that I just need to refresh my programming mind how do you do this for each row in the table lm_trackbounces that everytime I process a row, it deletes it from the database table lm_trackbounces, while I am inserting that data into lm_trackbsub . I just can't get that going.
and next question: how do I alter the msg info that is displayed, from the server, do you know this location in exim, where I can make the subject more identifiable like Subject: "THE SUBJECT" <br> so on
Thanks so much for your help!