php-imap2 icon indicating copy to clipboard operation
php-imap2 copied to clipboard

邮件正文会被当成附件,导致textHTML为空

Open halay opened this issue 7 months ago • 1 comments

Image Image

halay avatar Aug 14 '25 06:08 halay

$attachmentId = $partStructure->ifid ? trim($partStructure->id, " <>") : (isset($params['filename']) || isset($params['name']) ? mt_rand() . mt_rand() : null); // ignore contentId on body when mail isn't multipart (https://github.com/barbushin/php-imap/issues/71) if (!$partNum && TYPETEXT === $partStructure->type) { $attachmentId = null; }

halay avatar Aug 14 '25 06:08 halay