how i insert image in email template
<html>
<body> <img src="C:\Users\lenovo 9fin\Downloads\Appain\th.jpg"> <h1>shifa</h1> </br></br> <b>Thanks,</b></br> <b>PM Team,</b> </body>
</html>
this code is not working
Discussion posts and replies are publicly visible
Hi shifa,
you can use base64 string of the image like below
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4 //8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==" alt="Red dot" />
or
you can use url of the image like below
<img src="url" alt="alternatetext">