Is there a way to send only an Image with a link and some alt text for each item in an RSS feed?
I looked at the enclosure
tag but this is only for videos
Example in Rome tools (https://rometools.github.io/rome/)
Item item = new Item();
Enclosure enclosure = new Enclosure();
String imageUrl = "...";
enclosure.setUrl(imageUrl);
// set corect image type
enclosure.setType("image/jpeg");
List enclosureList = List.of(enclosure);
item.setEnclosures(enclosureList);