I am the user of your MAil.dll with order number XXXXXXX.
Generally, I am very satisfied with your application and thank you for it.
Some of my problems and questions are:
I am reading my messages from the e-mail address with the source code below.
However, when I want to read it again, the messages do not come. Also, I am doing the deletion (which you understand from the source code) but it does not delete the message and it still remains on Gmail. How do I overcome the problem?
Dim builder As New MailBuilder()
For Each uid As String In Pop3.GetAll()
MsgBox("uid=" + uid)
Dim email As IMail = builder.CreateFromEml(
Pop3.GetMessageByUID(uid))
MsgBox("Email Subject=" + email.Subject)
MsgBox("Email Text=" + email.Text)
Pop3.DeleteMessageByUID(uid)
MsgBox("mesaj silindi")
Next
Thanks