Configure image attributes for email compatibility
masterTo prevent images from breaking in different email clients, always include specific attributes in your <img> tags. At a minimum, you should include src, alt, width, height, and border.
It is also recommended to use inline styles to reset borders and ensure block display.
<img src="https://absolute-path-to-image.jpg" alt="Useful alt text" width="500" height="300" border="0" style="border:0; outline:none; text-decoration:none; display:block;">