Youssef
Youssef

Reputation: 169

use multiple parameters to an imap fetch request

I want the command syntaxe for imap to get juste header et text body from a message without attachments.

I have try this command but don't work : UID FETCH uid (BODY[HEADER] BODY[1])

Thanks

Upvotes: 0

Views: 1464

Answers (1)

Anshul
Anshul

Reputation: 1446

There exists a raw fetch command to fetch mail data

UID FETCH 2 (BODY[]<0.size>)

for example if you want to fetch first 100 bytes of mail then you can fire a command as

UID FETCH 2 (BODY[]<0.100>)

but then you will have to parse the data yourself.

Upvotes: 1

Related Questions