如何跟踪电子邮件到您的codeigniter应用程序

时间:2017-09-29 05:34:47

标签: php codeigniter email outlook agenda

我正在使用codeigniter编写应用程序,这显然已经完成,但我只想要一个插件。我想抓住我的Outlook帐户中的所有电子邮件到我的codeigniter应用程序。

如果我可以在我的codenigter应用程序上发送和接收消息,那将是非常棒的。

我的第二个问题是我如何才能从我的codeigniter应用程序到议程上的议程?

1 个答案:

答案 0 :(得分:2)

电子邮件适用于传入(IMAP)传出(SMTP)或类似POP3等的某些协议。

因此,您必须在Outlook中配置这些设置才能阅读邮件并发送邮件。同样,您可以使用PHP阅读PHP中的邮件和发送邮件。

发送电子邮件:

您可以使用codeigniter核心电子邮件库,该库适用于传出。 sending emails codeigniter

阅读邮件:

此脚本可以通过提供您向outlook提供的配置来读取您的邮件。

<?php
class Email_reader {

    // imap server connection
    public $conn;
    // inbox storage and inbox message count
    private $inbox;
    private $msg_cnt;

    // email login credentials
    private $server = 'YOUR_MAIL_SERVER';
    private $user   = 'email@mailprovider.com';
    private $pass   = 'yourpassword';
    private $port   = 143; // change according to server settings

    // connect to the server and get the inbox emails
    function __construct() {
        $this->connect();
        $this->inbox();
    }

    // close the server connection
    function close() {
        $this->inbox = array();
        $this->msg_cnt = 0;
        imap_close($this->conn);
    }
    // open the server connection
    // the imap_open function parameters will need to be changed for the particular server
    // these are laid out to connect to a Dreamhost IMAP server
    function connect() {
        $this->conn = imap_open('{'.$this->server.'/notls}', $this->user, $this->pass);
    }

    // move the message to a new folder
    function move($msg_index, $folder='INBOX.Processed') {
        // move on server
        imap_mail_move($this->conn, $msg_index, $folder);
        imap_expunge($this->conn);
        // re-read the inbox
        $this->inbox();
    }
    // get a specific message (1 = first email, 2 = second email, etc.)
    function get($msg_index=NULL) {
        if (count($this->inbox) <= 0) {
            return array();
        }
        elseif ( ! is_null($msg_index) && isset($this->inbox[$msg_index])) 
        {
            return $this->inbox[$msg_index];
        }
        return $this->inbox[0];
    }

    // read the inbox
    function inbox() {
        $this->msg_cnt = imap_num_msg($this->conn);
        $in = array();
        for($i = 1; $i <= $this->msg_cnt; $i++) {
            $in[] = array(
                'index'     => $i,
                'header'    => imap_headerinfo($this->conn, $i),
                'body'      => imap_body($this->conn, $i),
                'structure' => imap_fetchstructure($this->conn, $i)
            );
        }
        $this->inbox = $in;
    }
}
?>

它是阅读邮件的基本脚本,您可以根据自己的要求进行增强。

相关问题