Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm building a job where, from data retrieved from the database, I generate a mail in HTML format in the tSendMail. The question is: Is there a way to be able to add images in the HTML?
Best regards
"
<!DOCTYPE html>
<html>
<body>
<h2>Spectacular Mountain</h2>
<img src='http://www.rgagnon.com/images/jht.gif'>
<img src='C:Users/ashifa/Pictures/Success.JPG'>
</body>
</html>
"
Image over the internet is getting in the email whereas the image which is available in my local machine is not embedded in the mail...
Hi
We can write the general HTML code for insert Img. please see the sample logic for see image in email
"<html>
<body>
<h2>Spectacular Mountain</h2>
<img src='https://upload.wikimedia.org/wikipedia/commons/f/f9/Phoenicopterus_ruber_in_S%C3%A3o_Paulo_Zoo.jpg 'style='width:304px;height:228px;'>
</body>
</html>"
Hi @ashif ,
I am with the same problem, when sending emails with images embedded, the images in my local machine are not embedded.
Did you find an away to solve this? Thanks.