Problem with large mail's with Net library v1.30

CapReed

Member
Licensed User
Longtime User
Hi all,

I have a small but serious problem. Using the example of Erel, recover emails BUT ...

The emails are not downloaded complete. The small post discharge completely, but the largest are only partially downloaded. Not if you have something to do MessageText that maps to a String and has a size limit.

I understand that may be a mistake of mine concepts, but after several days I do not see the solution.

Can you help? :sign0085:

Thank you!

B4X:
Sub POP_DownloadCompleted (Success As Boolean, MessageId As Int, MessageText As String)
    If Success = False Then
        Log(LastException.Message)
    Else
        Log(MessageId)
        Log(MessageText) 'In long emails can not see the mail so that it can fully analyze later
        
        'Parse the mail
        Dim m As Message
        m = MailParser.ParseMail(MessageText, File.DirRootExternal) 
        Log(m.body)
    End If
End Sub
 

CapReed

Member
Licensed User
Longtime User
Hi Margret and Erel!

That is correct. I just got the mail in the debug window with partial log line by line through the mail and when performing a clean view them as completely.

This issue is really that crap you waste time and make you crazy. I wonder why I did not ask for help before ... :BangHead:

Thanks a million.
 
Upvote 0
Top