Quote Originally Posted by Logit View Post
.
.HTMLBody = eBody & "<br></br>" & "<img src=""C:\Users\logit\Documents\Logo.bmp"">"
Note that you need to include the path to the image that is inserted into your html body.

The above code references a few lines of text, previously identiified as ..... eBody = "This is the body of text to be included with the email message."
Then the html symbols for adding a blank line are ..... <br> </br> ..... and finally the html code for inserting the image.
Thanks Logit for quick help.

However, I have some doubts here. My VBA script will be processing mails received and incoming mail may have images in it, so I am not really sure that what will be image path. Along with it, mail content may be a long mail thread where images and text are spread in order of people replying. Appending all images at the end will lose the order.

Can you please provide any hint to me, what should be the way here?