Jump to content

[SOLVED] IMAP Delete


The Little Guy

Recommended Posts

For some reason, I can not delete any messages...

 

$mbox = imap_open("{mail.dudeel.com/novalidate-cert}", "[email protected]", "abc123", OP_READONLY)
     or die("can't connect: " . imap_last_error());
$dir = 1;
$smail = imap_sort($mbox,SORTDATE,$dir);
if($smail){
foreach($smail as $msg){
	imap_delete($mbox,$msg);
}
}
imap_expunge($mbox);
imap_close($mbox);

 

What am I doing wrong?

Link to comment
https://forums.phpfreaks.com/topic/121623-solved-imap-delete/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.