Registriert seit: 30. Nov 2005
Ort: München
5.771 Beiträge
Delphi 10.4 Sydney
|
AW: Mailversand mit Indy geht nur einmal
1. Aug 2012, 16:59
Hallo,
mache mal aus
Delphi-Quellcode:
try
idsmtp1.Connect;
idsmtp1.Send(idmsg1);
idsmtp1.Disconnect();
pBody.Free;
pAttachment.Free;
except
ShowMessage('Fehler bei der Verbindung!');
pBody.Free;
pAttachment.Free;
end;
end;
dieses hier:
Delphi-Quellcode:
try
try
idsmtp1.Connect;
idsmtp1.Send(idmsg1);
idsmtp1.Disconnect();
except
on E: Exception do
ShowMessage(' Fehler bei der Verbindung! ' +E. Message);
end;
finally
pBody.Free;
pAttachment.Free;
end;
Hilfe eventuell beim Fehlerfinden.
Grüße
Klaus
Klaus
|