ImapApi.php
763 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
namespace App\Mail\Jobs;
/**
*
* @time 2022/7/29 15:11
* Class ImapApi
* @package App\Mail\Jobs
*/
class ImapApi {
/**
* @var ImapApi
*/
private static $Instance;
/**
* 如 imap.qq.com
* @var string
*/
private $host;
/**
* 邮箱地址
* @var string
*/
private $username;
/**
* 密码
* @var string
*/
private $password;
/**
* 端口
* @var int
*/
private $port = 993;
private function __construct(){}
/**
* @return ImapApi
*/
public static function getInstance(): ImapApi
{
if(!self::$Instance){
self::$Instance = new static();
}
return self::$Instance;
}
}