Ver Mensaje Individual
  #7  
Antiguo 08-02-2007
japons japons is offline
Registrado
 
Registrado: feb 2006
Posts: 9
Reputación: 0
japons Va por buen camino
Resuelto

Cita:
Empezado por ArdiIIa
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);


Esto me lo ha resuelto, definitivamente.


Gracias a los dos por vuestra ayuda.


Es una placer pertenecer al club
Responder Con Cita