Signature images gets recognized as attachment

Hello Makers! so I created a scenario that saves attachments from emails into a sharepoint folder. Now the problem is, it recognizes signatures in emails (That have photos on them) as an attachment and it saves those too? I’ve tried to wrap my head around it but can’t seem to find a way to limit attachments and not include signatures. Need heeelp. Thank youuu

Alas I’m unaware of a built-in solution or any tool to help.

If the attachment is for a signature, then it will be linked/referenced inside the HTML email body.

If you look at the HTML, you might see:

<img src="cid:some-image-cid" alt="img" />

If you can match the some-image-cid to an attachment, then you’ll know its an inline image, rather than a pure attachment, and you can ignore it.

4 Likes

You are awesome! Thank youuu!

1 Like