php
zawierać ("dbconnect.php");
funkcja translate_object ($obj) {
powrotny $obj->mailbox. "@". $obj->host;
}
/* łączyć serwer *
$hostname = "{10.2.1.248: 995/pop3/ssl/novalidate-cert} INBOX";
$username = "xxxxxx";
$password = "xxxxxx";
/* próba *
$inbox = imap_open ($hostname, $username, $password) lub umierać ("Móc serwer: ". imap_last_error ());
/* chwyt email *
$emails = imap_search ($inbox, "WSZYSTKO ");
$headers = imap_headers ($inbox);
$numEmails = sizeof ($headers);
dla ($i = (1); $i < $numEmails+1; $i++)
{
$mailHeader = @imap_headerinfo ($inbox, $i);
$from = $mailHeader->reply_toaddress;
$subject = strip_tags ($mailHeader->subject);
$body = htmlentities (imap_body ($inbox, $i));
$date = $mailHeader->date;
$rows = "WYBIÓRKA * OD prośba";
$result = mysql_query ($rows);
$num=mysql_numrows ($result);
$query = "WSZYWKA W prośba ("daktylowy `, "od `, "podległy `, "wiadomość `) WARTOŚĆ (" ".date ("D D M H: i"). "", "$from", "$subject"," ".mysql_real_escape_string ($body). " ") ";
}
imap_delete ($inbox, "(1): *");
imap_expunge ($inbox);
/* zakończenie the związek *
imap_close ($inbox);
? >
|