Ver Mensaje Individual
  #6  
Antiguo 07-02-2007
Avatar de ArdiIIa
[ArdiIIa] ArdiIIa is offline
Miembro Premium
 
Registrado: nov 2003
Ubicación: Valencia city
Posts: 1.481
Reputación: 22
ArdiIIa Va por buen camino
A mi me pasó eso hace tiempo y lo resolví de este modo....

Código Delphi [-]
    IdSMTP.AuthenticationType := atNone;
    IdSMTP.Connect;

  if IdSMTP.AuthSchemesSupported.IndexOf('LOGIN')>-1 then
    begin
      IdSMTP.AuthenticationType := atLogin;
      IdSMTP.Authenticate;
    end;
 
   idSMTP.Send(idMessage);
__________________
Un poco de tu generosidad puede salvar la vida a un niño. ASÍ DE SENCILLO
Responder Con Cita