Welcome Guest, Not a member yet? Register   Sign In
is it possible to create a moblog with CI
#8

[eluser]Sally D[/eluser]
sophistry

I just started messing around with it on this Sunday morning these are the things I did so far

1) I am to install the imap function I did this in ubuntu like this: apt-get install php5-imap
and that was about it

2) I had to mess around with the arguments to the imap_open function it's a little cyptic at first the flags are the /pop3 part and the mailbox is the INBOX part. I had to isolate it into another file to understand that here is my test mail.php file

Code:
$mbox =  imap_open ("{mail.bluebottle.com:110/pop3}INBOX", "user", "pass")or die("can't connect: " . imap_last_error());

$err = imap_errors();
$messCount = null;
if($err[0] == 'Mailbox is empty')
        {
            // keep the state
            echo 'Mailbox is empty';
        } else
                {
                       $messCount = imap_num_msg($mbox);
                       echo "<pre>";
                       print_r(imap_headerinfo($mbox,$messCount));
                       echo "</pre>";
                       echo "<hr />";
                        echo "<pre>";
                       print_r(imap_body($mbox,$messCount));
                       echo "</pre>";
                }

I got one question what is the imap functions that returns the attacthments so I can download them?

I am thinking of rewriting the class and leaving out a few things to make it really simple just for fun.


Messages In This Thread
is it possible to create a moblog with CI - by El Forum - 09-19-2007, 06:31 PM
is it possible to create a moblog with CI - by El Forum - 09-19-2007, 06:42 PM
is it possible to create a moblog with CI - by El Forum - 09-19-2007, 10:34 PM
is it possible to create a moblog with CI - by El Forum - 09-20-2007, 08:08 AM
is it possible to create a moblog with CI - by El Forum - 09-20-2007, 11:08 PM
is it possible to create a moblog with CI - by El Forum - 09-21-2007, 02:53 AM
is it possible to create a moblog with CI - by El Forum - 09-21-2007, 08:10 AM
is it possible to create a moblog with CI - by El Forum - 09-23-2007, 07:25 AM
is it possible to create a moblog with CI - by El Forum - 09-23-2007, 09:10 AM
is it possible to create a moblog with CI - by El Forum - 09-24-2007, 04:46 AM
is it possible to create a moblog with CI - by El Forum - 09-25-2007, 03:27 AM
is it possible to create a moblog with CI - by El Forum - 09-25-2007, 04:41 AM
is it possible to create a moblog with CI - by El Forum - 09-25-2007, 07:21 AM
is it possible to create a moblog with CI - by El Forum - 09-25-2007, 07:57 AM
is it possible to create a moblog with CI - by El Forum - 09-25-2007, 07:17 PM
is it possible to create a moblog with CI - by El Forum - 09-25-2007, 07:32 PM
is it possible to create a moblog with CI - by El Forum - 09-26-2007, 11:27 AM
is it possible to create a moblog with CI - by El Forum - 09-26-2007, 12:12 PM



Theme © iAndrew 2016 - Forum software by © MyBB