Hello Power Platform Experts,
I have a gallery connected to my Outlook inbox with below formula.
Office365Outlook.GetEmailsV3({folderPath: "Inbox", top: 25, fetchOnlyUnread:false, includeAttachments: true}).value
The only reason for taking this app is to form custom and standard subject line for project requirement. I am concatenating all below values to form subject line and appending it to original subject line from gallery. And then forward the gallery item to another mailbox with this newly formed custom subject line.

The only problem while am forwarding is that my attachments coming from gallery item not coming to my forwarded mailbox. Here is my formula in my OnSelect of Forward button. What is the mistake am doing here? I have tested by taking gallery item attachments to collection and it does show the attachments there. But they are not coming to my forwarded mailbox.
Office365Outlook.SendEmailV2(Dropdown1_5.Selected.Value,Label2.Text,Gallery1.Selected.body,{attachments:Gallery1.Selected.attachments})