CJ Scholten
CJ Scholten

Reputation: 713

Microsoft Flow mail body multipart syntax

I'm trying to get the HTML part of an e-mails multipart body.
There is a function named 'multipartBody' that I'm trying to use, but I can't get the syntax right.

This is not accepted by Flow. How would I have to write it?

multipartBody(@{items('Apply_to_each')?['Body']},1)

Upvotes: 0

Views: 665

Answers (1)

nervuzz
nervuzz

Reputation: 466

Function multipartBody() expects first parameter to be an action name like Send an instant message or When a new email arrives etc. The supported multipart content type is multipart/*.

So the correct usage of this function basing on above example is multipartBody('Apply_to_each', 1).

BTW; I am afraid is not the function you are looking for.

Upvotes: 1

Related Questions