Så
- du har en server
- du får e-mails
- du vil gemme dem i en mysql-database
Cpanel-konfiguration
- gå til cpnal email forwarder
- tilføj en ny
- omdiriger til PATH -> /home/your_user/whatever/php.script.php
Php-script (du skal muligvis ændre "/usr/bin/php -q"-stien afhængigt af 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;
}
}
Virker også på delt hosting! :)
Alt du skal tilføje er mysql-indsættelsen og bruge de ovenfor definerede variable. Ved du, hvordan man bruger en mysql-database fra php? Eller har du også brug for hjælp til det?