Filtering attachments

Hi,
I am trying to filter the attachments of an email (received by Mailhook) like this:

This is my input example:

Unfortunately, the result is empty. Am i missing something?

Best Regards
Jörg

@Jorg_Ackermann

When using the map() function, you must refer to the variables/keys using the raw name. For example, the raw name of “MIME type” is “contentType”. If you hover over desired item in your Set Variable module, you will see the raw name of the variable:

Also, the map function always returns an array. If you want just a specific Content ID value you can use the get() function; e.g., get(map(…);1)

Jim - The Monday Man

4 Likes

Thank you very much, Jim!

1 Like