I have trouble finding the correct library . e.g dim m as message 4ba does not recognize the word message , but how do I find the library to be used. thanks in advance
Sub POP_DownloadCompleted (Success As Boolean, MessageId As Int, MessageText As String)
If Success = False Then
Log(LastException.Message)
Else
Log(MessageId)
'Parse the mail
Dim M As Message ''''''B4a don't accept the word "Message"
M = MailParser.ParseMail(MessageText, File.DirRootExternal)
Log(M)
End If
DownloadMessage
End Sub