Så
- du har en server
- du får e-post
- du vill spara dem i en mysql-databas
Cpanel-konfiguration
- gå till cpnal email forwarder
- lägg till en ny
- omdirigera till PATH -> /home/your_user/whatever/php.script.php
Php-skript (du kan behöva ändra "/usr/bin/php -q"-sökvägen beroende på din serverkonfiguration)
#!/usr/bin/php -q
<?php
chdir(dirname(__FILE__));
$fd = fopen("php://stdin", "r");
$email = "";
while (!feof($fd)) {
$email .= fread($fd, 1024);
}
fclose($fd);
if(strlen($email)<1) {
die();
}
// handle email
$lines = explode("\n", $email);
// empty vars
$from = "";
$to="";
$subject = "";
$headers = "";
$message = "";
$splittingheaders = true;
for ($i=0; $i < count($lines); $i++) {
if ($splittingheaders) {
// this is a header
$headers .= $lines[$i]."\n";
// look out for special headers
if (preg_match("/^Subject: (.*)/", $lines[$i], $matches)) {
$subject = $matches[1];
}
if (preg_match("/^From: (.*)/", $lines[$i], $matches)) {
$from = $matches[1];
}
if (preg_match("/^To: (.*)/", $lines[$i], $matches)) {
$to = $matches[1];
}
} else {
// not a header, but message
$message .= $lines[$i]."\n";
}
if (trim($lines[$i])=="") {
// empty line, header section has ended
$splittingheaders = false;
}
}
Fungerar också på delad hosting! :)
Allt du behöver lägga till är mysql-infogningen och använd de ovan definierade variablerna. Vet du hur man använder en mysql-databas från php? Eller behöver du hjälp med det också?