Bestimmen Sie die Implementierungsmethode
Es gibt zwei Protokolle zum Lesen von E-Mails: POP3
und IMAP
. Der Unterschied: Das POP3
-Protokoll ermöglicht E-Mail Clients Der Client lädt E-Mails auf den Server herunter, aber Vorgänge auf dem Client werden nicht an den Server zurückgemeldet. IMAP
ermöglicht die bidirektionale Kommunikation zwischen Webmail- und E-Mail-Clients. Bei Vorgängen auf der E-Mail werden auch die entsprechenden Aktionen auf dem Server ausgeführt. POP3
和IMAP
两种,区别:POP3
协议允许电子邮件客户端下载服务器上的邮件,但是在客户端的操作,不会反馈到服务器上。IMAP
提供webmail与电子邮件客户端之间的双向通信,客户端的操作都会反馈到服务器上,对邮件进行的操作,服务器上的邮件也会做相应的动作。
需求要求处理完用户的邮件以后,将邮件标记为已处理,因此选用IMAP
协议。
安装依赖
本地、服务器php均需要安装imap
扩展。在项目的composer.json
IMAP
-Protokoll ausgewählt wird. InstallationsabhängigkeitenSowohl lokales als auch Server-PHP müssen die Erweiterung imap
installieren. Fügen Sie die Erweiterung php-imap (https://github.com/barbushin/php-imap) wie folgt zur composer.json
des Projekts hinzu: "require": {
"php-imap/php-imap": "^3.1",
},
Nach dem Login kopieren
Konfigurieren Sie zugehörige Dienste"require": { "php-imap/php-imap": "^3.1", },
namespace app\library\service\mail;
use PhpImap\Exceptions\ConnectionException;
use PhpImap\Mailbox;
/**
* 收邮件服务邮件API接口
* Class PlayService
* @package app\library\service
*/
class ImapService
{
public $path = '{imap.263.net:993/imap/ssl}INBOX'; // IMAP server and mailbox folder
public $login = 'user@263.cn'; // Username for the before configured mailbox
public $password = 'pwd'; // Password for the before configured username
public $dir = null; // Directory, where attachments will be saved (optional)
public $encoding = 'UTF-8'; // Server encoding (optional)
public $mailbox;
public function __construct()
{
$this->mailbox = new Mailbox(
$this->path,
$this->login,
$this->password,
$this->dir,
$this->encoding
);
}
Nach dem Login kopieren
Alle ungelesenen E-Mails abrufen Auflisten namespace app\library\service\mail; use PhpImap\Exceptions\ConnectionException; use PhpImap\Mailbox; /** * 收邮件服务邮件API接口 * Class PlayService * @package app\library\service */ class ImapService { public $path = '{imap.263.net:993/imap/ssl}INBOX'; // IMAP server and mailbox folder public $login = 'user@263.cn'; // Username for the before configured mailbox public $password = 'pwd'; // Password for the before configured username public $dir = null; // Directory, where attachments will be saved (optional) public $encoding = 'UTF-8'; // Server encoding (optional) public $mailbox; public function __construct() { $this->mailbox = new Mailbox( $this->path, $this->login, $this->password, $this->dir, $this->encoding ); }