Archived Forum Post

Index of archived forum posts

Question:

IMAP Body not pulling

Jan 07 '13 at 12:00

Using VFP. I can read everything in IMAP except the body. What am I doing wrong?

FOR I = 0 TO LOBUNDLE.MESSAGECOUNT - 1
LOEMAIL = LOBUNDLE.GETEMAIL(I)
MSUBJ=LOEMAIL.SUBJECT
MEMAIL=LOEMAIL.FROM
MBODY =LOEMAIL.Body
ENDFOR


Answer

Never mind. I was using Fetchheaders instead of Fetchbundle. Sorry.