unlayer / react-email-editor

Drag-n-Drop Email Editor Component for React.js
https://unlayer.com/embed
MIT License
4.53k stars 730 forks source link

Fallback Option to Image Tool #336

Open w1am opened 1 year ago

w1am commented 1 year ago

I suggest adding a fallback option to the image tool so that, in cases where the image doesn't load, the fallback value that the user sets would display instead. Adding this feature would greatly improve the user experience and prevent issues with missing images.

A prototype for fallback without using javascript:

<div style="height: 200px;">
  <img style="width: 100%; height: 100%; object-fit: contain" src="{P{{product}}_IMG}" alt="Image not found"
    onerror="this.onerror=null;this.src='https://placehold.co/600x400/EEE/31343Chttps://placehold.co/600x400/EEE/31343C';">
</div>