Trying to format email html. I have 2 image sources. The second one needs to be filled by the first.
I feel like there should be a simple reference of some kind to equal the same information that is contained in the first, without using java.
Does such a thing exist? If not, what would be the easiest way to do so?
<td><a href="destinationlink">
<!--[if mso]><span style="display: none;"><![endif]-->
<img src="ACTUAL SOURCE TO LINK FROM"/>
<!--[if mso]></span><![endif]-->
<!--[if mso]>
<img src="FILLED IN OR REFERENCED HERE"/>
<![endif]--></a></td>
Thank you...
I did plenty of research, but only found java related solutions like OnClick. However I was hoping for something that only used html to reference/link the two strings together.