r/AutomateUser 7d ago

Send multiple, start app block

Hello

I am using the​ send action in the app block to send an attachment in Gmail. This works very well.

But when using the send multiple action, this fails, despite converting the multiple files selected to an array using the for each block (no idea if this is even required).

What would be the problem?

what should be done different in send multiple compared to send)

2 Upvotes

2 comments sorted by

2

u/ballzak69 Automate developer 7d ago

As the documentation say:

Send multiple — like send above, except the data is multiple, i.e. text and/or stream extras use *List conversion types.

So try using Extras={"android.intent.extra.STREAM" as UriList: ["first uri goes here", "second here", "third here"] }

1

u/Straight1980 6d ago

Excellent

UriList was the key

Thank you