Tengo este codigo HTML para insertar una imagen en body:
- Code: Select all Expand view
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Mi firma HTML</title>
</head>
<body>
<p>Esta es una prueba</p>
<p>Saludos cordiales.</p>
<a href="https://haas.com.gt/" target="_blank"><img src="G:/svnsem/sem68/Imagenes/kperez.jpg" width="500" height="250" style="padding-top:15px;"></a>
</body>
</html>
La imagen esta en mi disco local, y si la veo desde el navegador web, funciona correcamente:
Pero cuando la envío como html en un correo de Outlook:
- Code: Select all Expand view
FUNCTION OutlookPiedePagina()
LOCAL oOutlook, oMail, cFirma
oOutlook := CreateObject('Outlook.Application')
oMail := oOutlook:CreateItem(0)
oMail:Subject := 'Asunto del correo'
oMail:To := 'sincuir@yahoo.com'
TEXT INTO cFirma
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Mi firma HTML</title>
</head>
<body>
<p>Esta es una prueba</p>
<p>Saludos cordiales.</p>
<a href="https://haas.com.gt/" target="_blank"><img src="G:/svnsem/sem68/Imagenes/kperez.jpg" width="500" height="250" style="padding-top:15px;"></a>
</body>
</html>
ENDTEXT
oMail:HTMLBody := cFirma
oMail:Send()
RELEASE oMail
Return .f.
Al recibir el correo, no se ve la imagen:
Alguien sabe como colocar esa imagen local para que se muestre en el correo?
Saludos.
Carlos