In PHP, IMAP Functions, what are the functions that download the attached files.
I only want to download attached files if needed. I want to save bandwidth, but maybe some functions download them to get their information, or the structure of the email ?
If I have an attachment of 2G, I don’t want to download it, but want all the same to get the other part of the email (text parts, information about the email structure,…)
In PHP, IMAP Functions, what are the functions that download the attached files. I
Share
See
imap_fetchbodyandimap_fetchstructure. Messages with attachments are multi-part messages; you can tellimap_fetchbodywhich part you want to fetch.