Guest User

Untitled

a guest
Aug 11th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. php pop3 email folder not created
  2. $server="{localhost:110/pop3}";
  3.  
  4. $username="username";
  5.  
  6. $password="password";
  7.  
  8. $mbox=imap_open($server,$username,$password);
  9. if($mbox)
  10. {
  11. if(!imap_createmailbox($mbox,"{localhost:110/pop3}DRAFTS"))
  12. {
  13. echo imap_last_error();
  14. }
  15. else
  16. echo "mailbox created!";
  17. }
Add Comment
Please, Sign In to add comment