![]() |
![]() |
| Paypal | FTP | CCD | Buscar | Trucos | Trabajo | Foros |
|
|||||||
| Registrarse | FAQ | Miembros | Calendario | Guía de estilo | Buscar | Temas de Hoy | Marcar Foros Como Leídos |
![]() |
|
|
Herramientas | Buscar en Tema | Desplegado |
|
|
|
#1
|
|||
|
|||
|
Hola como estas? has encontrado informacion, por que yo no
|
|
#2
|
||||
|
||||
|
Hola,
Cita:
|
|
#3
|
||||
|
||||
|
Wow!!!
Otro Refrito... ¡¡¡¡¡¡enviar E-mail Desde Delphi!!!!!! Esto Ya Esta Muy Visto En Hilos Anteriores
__________________
Herr Heins Faust |
|
#4
|
|||
|
|||
|
asi pude enviar correo con mi cuenta de speedy! tube que agregar esto smtp.AuthenticationType:=Atlogin; sino me daba un error de autentificacion despues lo otro andaba x ahi en los foros;
Código:
uses
Idmessage, IdSMTP;
procedure TForm1.Button1Click(Sender: TObject);
var
smtp: TIdSMTP;
mail: TIdMessage;
begin
smtp := TIdSMTP.Create(Self);
smtp.AuthenticationType:=Atlogin;
mail := TIdMessage.Create(Self);
with smtp do
begin
Port := 25;
Host := 'mail.speedy.com.ar';
Username := '[email protected]';
Password := '123456';
end;
with mail do
begin
Recipients.Add;
Recipients[0].Name := 'martincho';
Recipients[0].Address := '[email protected]';
From.Name := 'Ubicacion de mi sistena';
From.Address := '[email protected]';
Subject := 'Ubicacion Sigea';
Body.Text := 'cuerpo del mensaje';
end;
// TIdAttachment.Create(mail.MessageParts, 'C:\adjunto.txt');
smtp.Connect(30000);
try
try
smtp.Send(mail);
except
on E: Exception do
ShowMessage(E.Message);
end;
finally
if smtp.Connected then
smtp.Disconnect;
end;
mail.Free;
smtp.Free;
end;
|
|
#5
|
|||
|
|||
|
Es posible poner una imagen jpg en el mail
Hola trabajo con delphi6 y estoy enviando automáticamente cientos de mail.
Mi pregunta es si es posible añadir una imagen a el cuerpo del mensaje. Utilizo los componentes indy idsmtp y idmessage. Un saludo |
![]() |
| Herramientas | Buscar en Tema |
| Desplegado | |
|
|
Temas Similares
|
||||
| Tema | Autor | Foro | Respuestas | Último mensaje |
| Enviar mail desde el Outlook Express | Gabriel2 | Internet | 10 | 27-12-2015 11:20:42 |
| Como enviar un e-mail desde Builder? | JuanErasmo | C++ Builder | 13 | 26-11-2008 17:39:58 |
| Enviar Mail desde codigo!! | lasagastume | Internet | 3 | 19-07-2007 16:39:33 |
| Como enviar un mail desde una aplicacion | herodes | Varios | 3 | 20-04-2005 17:20:17 |
| enviar mail desde delphi 7 | Diego | Internet | 2 | 07-06-2004 13:07:50 |
|