Delicious Bookmark this on Delicious Share on Facebook SlashdotSlashdot It! Digg! Digg



PHP : Function Reference : IMAP, POP3 and NNTP Functions : imap_createmailbox

imap_createmailbox

Create a new mailbox (PHP 4, PHP 5)
bool imap_createmailbox ( resource imap_stream, string mailbox )

Example 1046. imap_createmailbox() example

<?php
$mbox
= imap_open("{imap.example.org}", "username", "password", OP_HALFOPEN)
    or die(
"can't connect: " . imap_last_error());

$name1 = "phpnewbox";
$name2 = imap_utf7_encode("phpnewb&ouml;x");

$newname = $name1;

echo
"Newname will be '$name1'<br />\n";

// we will now create a new mailbox "phptestbox" in your inbox folder,
// check its status after creation and finaly remove it to restore
// your inbox to its initial state

if (@imap_createmailbox($mbox, imap_utf7_encode("{imap.example.org}INBOX.$newname"))) {
   
$status = @imap_status($mbox, "{imap.example.org}INBOX.$newname", SA_ALL);
   if (
$status) {
       echo
"your new mailbox '$name1' has the following status:<br />\n";
       echo
"Messages:   " . $status->messages    . "<br />\n";
       echo
"Recent:     " . $status->recent      . "<br />\n";
       echo
"Unseen:     " . $status->unseen      . "<br />\n";
       echo
"UIDnext:    " . $status->uidnext     . "<br />\n";
       echo
"UIDvalidity:" . $status->uidvalidity . "<br />\n";

       if (
imap_renamemailbox($mbox, "{imap.example.org}INBOX.$newname", "{imap.example.org}INBOX.$name2")) {
           echo
"renamed new mailbox from '$name1' to '$name2'<br />\n";
           
$newname = $name2;
       } else {
           echo
"imap_renamemailbox on new mailbox failed: " . imap_last_error() . "<br />\n";
       }
   } else {
       echo
"imap_status on new mailbox failed: " . imap_last_error() . "<br />\n";
   }

   if (@
imap_deletemailbox($mbox, "{imap.example.org}INBOX.$newname")) {
       echo
"new mailbox removed to restore initial state<br />\n";
   } else {
       echo
"imap_deletemailbox on new mailbox failed: " . implode("<br />\n", imap_errors()) . "<br />\n";
   }

} else {
   echo
"could not create new mailbox: " . implode("<br />\n", imap_errors()) . "<br />\n";
}

imap_close($mbox);
?>

Change Language


Follow Navioo On Twitter
imap_8bit
imap_alerts
imap_append
imap_base64
imap_binary
imap_body
imap_bodystruct
imap_check
imap_clearflag_full
imap_close
imap_createmailbox
imap_delete
imap_deletemailbox
imap_errors
imap_expunge
imap_fetch_overview
imap_fetchbody
imap_fetchheader
imap_fetchstructure
imap_get_quota
imap_get_quotaroot
imap_getacl
imap_getmailboxes
imap_getsubscribed
imap_header
imap_headerinfo
imap_headers
imap_last_error
imap_list
imap_listmailbox
imap_listscan
imap_listsubscribed
imap_lsub
imap_mail_compose
imap_mail_copy
imap_mail_move
imap_mail
imap_mailboxmsginfo
imap_mime_header_decode
imap_msgno
imap_num_msg
imap_num_recent
imap_open
imap_ping
imap_qprint
imap_renamemailbox
imap_reopen
imap_rfc822_parse_adrlist
imap_rfc822_parse_headers
imap_rfc822_write_address
imap_savebody
imap_scanmailbox
imap_search
imap_set_quota
imap_setacl
imap_setflag_full
imap_sort
imap_status
imap_subscribe
imap_thread
imap_timeout
imap_uid
imap_undelete
imap_unsubscribe
imap_utf7_decode
imap_utf7_encode
imap_utf8
eXTReMe Tracker