rcube_email_server_address.php 2.1 KB
<?php


/**
 * 邮件服务商,通过邮件后缀来自动确定要请求的服务商
 * @author:dc
 * @time 2022/7/22 14:10
 * Class rcube_email_server_address
 */
class rcube_email_server_address{

//    /**
//     * @var int
//     */
//    public $id = 0;
//
//    /**
//     * 邮箱后缀
//     * qq.com
//     * @var string
//     */
//    public $mail_suffix;
//
//    /**
//     * ssl://imap.qq.com
//     * @var string
//     */
//    public $imap;
//
//    /**
//     * smtp.qq.com
//     * @var string
//     */
//    public $smtp;
//
//    /**
//     * 服务商名称
//     * @var string
//     */
//    public $name;
//
//
//    private $rc;
//
//    private $db;
//
//    public static $rows;
//
    /**
     * 表
     * @var string
     */
//    public $table = 'email_server_address';


    /**
     * Object constructor
     *
     * @param int   $db
     */
//    function __construct($db = null)
//    {
//
//        if(!$db){
//            $db =   rcube::get_instance()->get_dbh();
//        }
//        // 查询数据
//        $result   =   $db->query("select * from ". $db->table_name($this->table,true) );
//
//        // 获取列表
//        $rows   =   $result->fetchAll(PDO::FETCH_ASSOC);
//
//        foreach ($rows as $row){
//            static::$rows[$row['mail_suffix']] = [
//                'name'  =>  $row['service_provider'],
//                'smtp'  =>  $row['smtp'],
//                'imap'  =>  $row['imap'],
//            ];
//        }
//
//        $rows = null;
//
//    }


    public static function all($db = null)
    {
        if(!$db){
            $db =   rcube::get_instance()->get_dbh();
        }
        // 查询数据
        $result   =   $db->query("select * from ". $db->table_name('email_server_address',true) );

        // 获取列表
        $rows   =   [];

        foreach ($result->fetchAll(PDO::FETCH_ASSOC) as $row){
            $rows[$row['mail_suffix']] = [
                'name'  =>  $row['service_provider'],
                'smtp'  =>  $row['smtp'],
                'imap'  =>  $row['imap'],
            ];
        }

        return $rows;
    }







}