I am working on mail client using IMAP and I am looking for attachement retriving commnand.
Thanks...
|
I am working on mail client using IMAP and I am looking for attachement retriving commnand. Thanks... |
|||
|
|
|
All message info is retrieved using the First, you can retrieve the entire email message, verbatim. In that case, you're going to need to include a MIME parser in your client to figure out the structure of the message. (Each platform has at least one or two popular MIME parsers; since you haven't told us what you're coding in, I can't recommend one for you.) Once you get the message structure from your MIME parser, you'll need some client logic to determine which parts are attachments. It's worth looking at RFC 2183 to get you started. In general, parts with a
Second, you can have the IMAP server parse the message structure for you by issuing a
Once you've determined which parts you're interested in, you can issue a
|
||||
|
|
|
I believe what you are looking for is the IMAP v4 FETCH command. |
|||
|