I am creating a free forwarding email address system and asked a little while ago about this. What I would like to do is forward an email to the persons real email address while keeping the headers intact. Is there any reason why the below code would not work:

#!/usr/bin/php -q
<?php
$fd = fopen("php://stdin", "r");
$email = "";
while (!feof($fd)) {
    $email .= fread($fd, 1024);
}
fclose($fd);

$lines = explode("\n", $email);

$to = "";
$from = "";
$subject = "";
$headers = "";
$message = "";
$splittingheaders = true;

$beforecheck = str_ireplace("to:", "", $to);
$checkdatabase = str_ireplace("@virtualparalegal.com", "", $beforecheck);

mysql_connect("localhost", "virtucb3_admin", "Instant11!") or
    die("Could not connect to the Database, the Database returned this error: " . mysql_error());
mysql_select_db("virtucb3_wordpress");

$result = mysql_query("SELECT user_nicename, user_email FROM wp_users WHERE `user_nicename` = $checkdatabase");

    while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
    if ( $row["user_nicename"] == "$checkdatabase") {
        $to = ($row["user_email"]);
    }
    else {
        $to = "info@virtualparalegal.com";
    }
}

for ($i=0; $i<count($lines); $i++) {
    if ($splittingheaders) {
        $headers .= $lines[$i]."\n";

        if (preg_match("/^Subject: (.*)/", $lines[$i], $matches)) {
            $subject = $matches[1];
        }
        if (preg_match("/^From: (.*)/", $lines[$i], $matches)) {
            $from = $matches[1];
        }
    } else {
        $message .= $lines[$i]."\n";
    }

    if (trim($lines[$i])=="") {
        $splittingheaders = false;
    }
}


mail($to, $subject, $message, $headers);
?>

Thank you all in advance.

link|improve this question

75% accept rate
shouldn't this line: $result = mysql_query("SELECT user_nicename, user_email FROM wp_users WHERE user_nicename = $checkdatabase"); wrap $checkdatabase in ' ' and use like instead? – Dr.Dredel Nov 2 '11 at 3:17
1  
also, I think you're supposed to add \r\n to each of your headers – Dr.Dredel Nov 2 '11 at 3:19
It would have to be the exact username and I am trying your suggestions now, thank you – A.M.K Nov 2 '11 at 3:23
Where should I put \r\n? and the other one didin't work – A.M.K Nov 2 '11 at 3:28
not sure what you mean by "other one didn't work" and the added line should be ... $headers .= $lines[$i]."\r\n"; instead of just "\n" – Dr.Dredel Nov 2 '11 at 3:32
show 4 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.