Si refieres a los de la pantalla q enviaste...como se los defino al componente?.
Intente esto:
Código Delphi
[-] with smtp do
begin
Port := 587;
Host := 'smtp.gmail.com';
AuthenticationType := atLogin;
UserId:='[email protected]';
Password := 'fayhxquevbflre';
IOHandler := SSL;
UseTLS:=utUseExplicitTLS;
end;
Me salen estos errores...
Código:
[Error] ImprimirEnviarTCK.pas(99): Undeclared identifier: 'IOHandler'
[Error] ImprimirEnviarTCK.pas(99): Undeclared identifier: 'SSL'
[Error] ImprimirEnviarTCK.pas(100): Undeclared identifier: 'UseTLS'
[Fatal Error] Laundry.dpr(104): Could not compile used unit 'ImprimirEnviarTCK.pas'
Ahora...si estos erroes tienen q ver con las DLL q me enviaste, como las actualizo o copio y en donde?
Gracias Casimiro.