Im having troubles changing status on emails....
function draw_message($mailbox, $iMessageNo){
//draw messagbe stuff up here//////
$status = imap_setflag_full ($mailbox, imap_msgno($mailbox, $iMessageNo), "\Seen")or die(imap_last_error());
print gettype($status)."<br />\n";
print $status."<br />\n";
}
it prints out:
boolean
1
but the status never changes from:
[Unseen]:
[Flagged]:
[Answered]:
[Deleted]:
[Draft]:
at least now i knwo what it means, but how do i change it!! LOL
what am i doing wrong with this function?