Hi,
I am currently trying to design an email and I am having problems with my image element. I use the following HTML to display the image:
SendGrid.SendEmailV4(
"From@email.com",
"To@email.com",
"Subject",
"
Set(encodedPicture,JSON(MyImage.Image,JSONFormat.IncludeBinaryData));
<img src=" & encodedPicture & " width=""300"" height=""120"" float=""right"" margin-top=""100px"" border=""2px solid black"
"
, true //Boolean value for isHTML
);
This gives the image as wanted in the email, but however it only applies the style of the width and height. It does not apply the other attributes.
Thanks in advanced if anyone knows how to fix this.