Question:
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
Never mind. I was using Fetchheaders instead of Fetchbundle. Sorry.