Ver Mensaje Individual
  #1  
Antiguo 08-08-2010
Avatar de MAXIUM
MAXIUM MAXIUM is offline
Miembro
 
Registrado: may 2005
Posts: 1.490
Reputación: 21
MAXIUM Va camino a la fama
Question Email con formato HTML

¿Como puedo enviar correo en formato HTML en Outlook Express?

Código:
var em_subject, em_body, em_mail : string;
begin
   em_subject := 'Esto no es noticia';
   em_body := '<html><font color=red>Club Delphi <b>es el mejor lugar.</b></font></html>';

   em_mail := 'mailto:club@delphi.com?subject=' + em_subject + '&body=' + em_body ;

   ShellExecute(Handle, 'open', PChar(em_mail), nil, nil, SW_SHOWNORMAL) ;
end;
Responder Con Cita