Ben postanıza gelen mesajı ayrıştırmak için php imap fonksiyonlarını kullanıyorum. Ben Mesajları birer birer alıp DB bunları kaydedebilirsiniz. Kaydettikten sonra, ben gelen mesajı silmek istiyorum. imap_delete fonksiyonu burada çalışmıyor. Benim kod böyledir:
$connection = pop3_login($host,$port,$user,$pass,$folder="INBOX",$ssl=false);//connect
$stat = pop3_list($connection);//list messages
foreach($stat as $line) {
//save in db codes...
imap_delete($connection, $line['msgno']);//flag as delete
}
imap_close($connection, CL_EXPUNGE);
I also tested - imap_expunge($connection);
But it is not working. The messages are not deleted. Please help me out...