Así que
- tienes un servidor
- recibes correos electrónicos
- quieres guardarlos en una base de datos mysql
Configuración del panel de control
- ir al reenviador de correo electrónico cpnal
- agregar uno nuevo
- redirigir a PATH -> /home/your_user/whatever/php.script.php
Secuencia de comandos PHP (es posible que deba cambiar la ruta "/usr/bin/php -q" según la configuración de su servidor)
#!/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;
}
}
¡También funciona en alojamiento compartido! :)
Todo lo que necesita agregar es insertar mysql y usar las variables definidas anteriormente. ¿Sabes cómo usar una base de datos mysql desde php? ¿O también necesitas ayuda con eso?