How to have a  button sending current image from camera?

Add a Camera item and set its Stream rate to 100.

Connect to Outlook.

Add this OnSelect button property.

Office365Outlook.SendEmailV2(
  •     “beran@exceltown.com”,
        “Subject”,
        “text”,
        {
            Attachments: Table(
                {
                    Name: “file.jpg”,
                    ContentBytes: Camera1.Stream,
                    ‘@odata.type’: “”
                }
            )
        }
    )