cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

New Bug: Sending Email with attachment doesn't work in mobile

My app is setup to save an email's attachments to a local collection, and then to attach that collection to a new email sent from PowerApps. (Not through a flow, but through Office365.SendEmail)

 

This works perfectly in a desktop or laptop's browser. And it used to work fine in mobile devices as well. But that's changed the last couple of days. Now, when we try to send that email in mobile, we get an error message that says:

 

Office365.SendEmail failed: { "status": 400, "message": "Parameter 'Attachment Content' cannot be null or empty...

 

Typically, when the attachments are under 1 MB, this error doesn't always occur. When they're over a few MB (ranging from 4-16 MB in our tests), the error usually appears. But again, only in mobile.

 

I can't find any problems that would cause this, since the app does work fine on a desktop. But if anyone has ideas on the cause or how to fix this, please help!

 

We've had a lot more errors appear in our app, especially mobile, over the last couple days than we have over the past few weeks. And we really haven't changed anything! Not sure if it was the most recent PowerApps update or what...

1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Hi @Anonymous thanks for your reply. This was helpful but for some reason the error dissappeared. I'm not sure why it worked perfectly, then I recieved that error and it is like it resolved itself. Maybe there was an issue with getting the email address from the backend in the cloud? Not sure but again thanks for taking the time to reply back to me.

View solution in original post

12 REPLIES 12
v-xida-msft
Community Support
Community Support

Hi @jschudel,

 

Could you please share a screenshot of your issue?

 

The error message told that your Attachment Content is null or empty, please check if you have provided proper value for the Attachments property within your Office365.SendEmail(...) formula.

 

I have made a test on my side and don't have the issue that you mentioned. The screenshot as below:2947BD4C-D349-4DCB-B59D-849E719FD4B1.jpg

 

5.JPG

The OnSelect property of the Button control set to following formula:

Office365.SendEmail("Test1@xxxxxx.onmicrosoft.com","Send Iamge","This is atest email",{Attachments:Table({Name:"Test.gif",ContentBytes:AddMediaButton1.Media,'@odata.type':""})})

 

The Attachment is a gif picture whose size is 4.45 MB. The version of PowerApps app wihin my Android Mobile Device (Samsung Galaxy C9 Pro) is 3.18061.12, the version of my Android Mobile Device is 7.1.1.

 

Please provide more details about your app's configuration and the issue, so that, we could reproduce your issue on my side and provide a proper workaround for you.

 

Best regards,

Kris

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks for your test and response. Here's the main error message:
 
file-5b.jpg
 
 
And here's what my code is doing, specifically (across multiple screens):
 
1) Retrieve all emails with attachments from Outlook inbox, save to local collection:
   ClearCollect(EmailList,Office365.GetEmails({fetchOnlyUnread:false,searchQuery:"hasattachments:yes",top:10}))
 
2) Display that local collection of emails in gallery for user to select one. Set the ID of the email selected to a local variable, MyEmailID:
   Set(MyEmailID,ThisItem.Id)
 
3) Retrieve all attachments from that email, and save to local collection. I have verified that in the desktop version, this does indeed save down the ContentBytes data:
   ClearCollect(AttachmentList,Office365.GetEmail(MyEmailID,{includeAttachments:true}).Attachments)
 
4) Allow the user to remove unneeded attachments from the local collection. If they click the delete button on an attachment in a gallery displaying the collection, this happens: 
   RemoveIf(AttachmentList,Id = ThisItem.Id)
 
5) To send the new email with these attachments, this code is executed as an OnSelect action for a button. It first makes sure the local collection is not empty. If it is empty, it sends an email without attachment:
   If(And(FileSubmission="Email attachment",Not(IsEmpty(AttachmentList))),Office365.SendEmail(SendTo@email.com,"Subject line","Body text",{Cc:CCTo,Bcc:"jschudel@email.com",Attachments:AttachmentList,IsHtml:true}),Office365.SendEmail(SendTo@email.com,"Subject line","Body text",{Cc:CCTo,Bcc:"jschudel@email.com",IsHtml:true}))
 
As I said earlier, on a desktop, this works perfectly. However, on an iPhone, iPad, or Android, I get this error message. I've tested this with multiple attachment sizes. Occasionally, very small attachments work (under 1-2 MB), but anything over 2MB always fails.
 
I'm wondering if the ContentBytes data is not downloading or transferring completely, even though the "loading" seems to complete after step 3 above. Maybe my check in step 5 is not enough? Or not worded correctly? If I could do a check on whether the ContentBytes is empty for any of the items, maybe that would help, but I'm not sure how to do that.

I don't understand, I posted a long reply yesterday with details and it's not showing up here... If it still doesn't appear in a minute, I'll try to repost.

Thanks for your test and response. Here's the original error message:file-5b.jpg

 


This message was from an iPad, but I was also getting the same thing on my Android. We were running PowerApps build 3.18061.12, and my Android version is 4.4.2 (Samsung Galaxy s4 mini).
 
Today, we resaved with the current PowerApps build 3.18062.23. We're seeing the same error on the IPhone/iPad, but the Android throws a different error everytime we try to download or transfer email attachments over 2MB per file. This actually doesn't prevent the email from being sent, just excludes any attachments. (But the iPad/iPhone still won't send the email.) Here is the newest error message from Android:
2018-06-19 23.46.13.png

 

 
 
 
 
And here's what my code is doing, specifically (across multiple screens):
1) Retrieve all emails with attachments from Outlook inbox, save to local collection:
   ClearCollect(EmailList,Office365.GetEmails({fetchOnlyUnread:false,searchQuery:"hasattachments:yes",top:10}))
 
2) Display that local collection of emails in gallery for user to select one. Set the ID of the email selected to a local variable, MyEmailID:
   Set(MyEmailID,ThisItem.Id)
 
3) Retrieve all attachments from that email, and save to local collection. I have verified that in the desktop version, this does indeed save down the ContentBytes data:
   ClearCollect(AttachmentList,Office365.GetEmail(MyEmailID,{includeAttachments:true}).Attachments)
 
4) Allow the user to remove unneeded attachments from the local collection. If they click the delete button on an attachment in a gallery displaying the collection, this happens: 
   RemoveIf(AttachmentList,Id = ThisItem.Id)
 
5) To send the new email with these attachments, this code is executed as an OnSelect action for a button. It first makes sure the local collection is not empty. If it is empty, it sends an email without attachment:
   If(And(FileSubmission="Email attachment",Not(IsEmpty(AttachmentList))),Office365.SendEmail(SendTo@email.com,"Subject line","Body text",{Cc:CCTo,Bcc:"jschudel@email.com",Attachments:AttachmentList,IsHtml:true}),Office365.SendEmail(SendTo@email.com,"Subject line","Body text",{Cc:CCTo,Bcc:"jschudel@email.com",IsHtml:true}))
 
As I said earlier, on a desktop, this works perfectly. It's only on mobile devices, with individual attachment sizes greater than 2MB, where this is an issue. (The total size of all attachments can be greater than 2MB.)
 
I'm wondering if the ContentBytes data is not downloading or transferring completely, even though the "loading" seems to complete after step 3 above. Is there something else I can do?
 
I have tried modifying the steps above by (1) not saving the attachments down to a collection and (2) using the Office365.GetEmail call directly in the Office365.SendEmail call: 
If(And(FileSubmission="Email attachment",Not(IsEmpty(AttachmentList))),Office365.SendEmail(SendTo@email.com,"Subject line","Body text",{Cc:CCTo,Bcc:"jschudel@email.com",Attachments:Office365.GetEmail(MyEmailID,{includeAttachments:true}).Attachments,IsHtml:true}),Office365.SendEmail(SendTo@email.com,"Subject line","Body text",{Cc:CCTo,Bcc:"jschudel@email.com",IsHtml:true}))
 
This basically has the same result, just delays the Android error message until that final step (whereas it appears in step 3 otherwise).
Anonymous
Not applicable

I'm currently having this issue as well, has there been any response or solution yet?

MarinaSE1996
Regular Visitor

Hii!! Have you got the solution? I have the same problem...

Anonymous
Not applicable

Hello,

 

I am using Meeting Capture and I have recieved this error as well today. I got the error in the browser (IE) and as well in Microsoft Teams with Meeting Capture added as a tab in our general channel. I have been digging through Meeting Capture trying to find the specific code that exports attachements to emails. Funny thing is Meeting Capture worked perfectly just a month ago. Is this thread still alive or does anyone from Microsoft have an idea what could cause this issue? Thanks for your time. I attached a screen shot as a reference.

 

Anonymous
Not applicable

Replying to myself but only once I promise (lol). What stands out to me the most in the error message of course is subject cannot be missing or null. I don't see where on the export screens in Meeting Capture it is designating a subject. Wouldn't just take the meeting title as the subject?

Anonymous
Not applicable

Hi @Anonymous thank you for your post! 

 

Take a look at the following thread and let me know if it helps your issue:

 

https://powerusers.microsoft.com/t5/General-Discussion/Where-is-the-code-in-the-meeting-capture-to-send-emails-with/m-p/190185 

 

@Anonymous

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (825)