Hi,
How am I via VB filter specific dates? A range between 2 dates?
So far I have this code below but it takes for ever to loop through all e-mails and check dates.
Dim builder As New MailBuilder()
For Each uid As String In pop3.GetAll()
Dim eml = pop3.GetMessageByUID(uid)
Dim email As IMail = builder.CreateFromEml(eml)
datum = email.[Date]
If Year(datum) = 2018 And Month(Now) = 11 Then
Please advise, thank you SOO much!!