...
|
...
|
@@ -231,9 +231,9 @@ class Mail { |
|
|
try {
|
|
|
|
|
|
|
|
|
if(empty($header['Subject'])){
|
|
|
logs($result);
|
|
|
}
|
|
|
// if(empty($header['Subject'])){
|
|
|
// logs($result);
|
|
|
// }
|
|
|
|
|
|
// 没有收件人
|
|
|
if(!empty($header['To'])){
|
...
|
...
|
@@ -257,7 +257,7 @@ class Mail { |
|
|
$data = [
|
|
|
'msgno' => $key,
|
|
|
'uid' => $result['UID'],
|
|
|
'subject' => $header['Subject'],
|
|
|
'subject' => $header['Subject']??'',
|
|
|
'cc' => $cc,
|
|
|
'bcc' => $bcc,
|
|
|
'from' => $header['From'][0]['email']??'',
|
...
|
...
|
|