I would like to delete mails with a certain header or a certain sender with INDY 10 / DELPHI. I already can query my email account with INDY10. Here is the existing demo code:
procedure TForm1.BtnCheckClick(Sender: TObject);
var
i: Integer;
Msg: TIdMessage;
MailCount: Integer;
begin
if IdPop31.Connected then
begin
MailCount := IdPOP31.CheckMessages;
lbMailCount.Caption := IntToStr(MailCount);
lbMailboxSize.Caption := IntToStr(IdPOP31.RetrieveMailBoxSize) + ' Bytes';
for i := 1 to MailCount do
begin
Msg := TIdMessage.Create;
try
IdPOP31.RetrieveHeader(i, Msg);
MailsList.Lines.Add(Msg.Subject + ' from ' + Msg.From.Text);
finally
Msg.Free;
end;
end;
end;
end;
iiterator, so simply filter messages you want to delete by adding a conditional statement (e.g.if Msg.Sender.Address = 'somebody@example.com' then, for sender) and use theDeletemethod. TheDeletemethod will mark messages for deletion and when you disconnect from the POP3 server, they'll be physically removed. – TLama Jan 27 at 13:22Freemessage objects when you'll be using them in your object list. But the principle will be the same, you will still use theTIdPOP3.Deletemethod for this. – TLama Jan 27 at 14:47