Mysql
 sql >> Database >  >> RDS >> Mysql

Come inserire un messaggio di posta elettronica in arrivo nel database MySQL?

Quindi
- hai un server
- ricevi email
- vuoi salvarle in un database mysql

Configurazione pannello
- vai a cpnal inoltro e-mail
- aggiungine uno nuovo
- reindirizza a PATH -> /home/your_user/whatever/php.script.php

Script PHP (potrebbe essere necessario modificare il percorso "/usr/bin/php -q" a seconda della configurazione del server)

#!/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;
    }
}

Funziona anche su hosting condiviso! :)

Tutto ciò che devi aggiungere è l'inserimento di mysql e utilizzare le variabili sopra definite. Sai come usare un database mysql da php? O hai bisogno di aiuto anche per questo?