Hi all,
I am trying to process an email with inline images and send it to other mails, PDF, β¦ The images are inline, so an image tag with a cid
<img src="cid:ii_ma28yrrb0" >
I am iterating through the attachments to replace the cid with the base64 image:
<img src="data:image/png;base64 ( ...long text here...) >
This will result in an email I can process further without relying on the attachment. This all works fine.. almost . The text parser after the array iterator replaces the cid by the base64 image, the problem is: it is using the same source on every iteration. I tried to solve this using a variabele in stead of the html source, with no luck so far.
So my question is: if I have two images in my mail, how do I tell the Text parser to use the html as source in the first iteration and in the second iteration the result from the first (and so onβ¦).
blueprint-iterator.json (14.4 KB)
Thanks in advance, have a good day!
Marcel