You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using EmailIntentBuilder in my app Glimpse Notifications. The can create some log data and send it as an email to me. Recently, I'm getting mails where the body seems to be cut off. For example, the body should look like this:
More data follows, a typical body would be 237 lines or 17k bytes.
But I only get:
Device
Is there any resonable explanation for this? Are there any lenth limitations? Any characters I should not use? Any side effects from the fixLineBreaks() method?
Just to be clear, only a fraction of emails are garbled like this. In one case I could determine that the user user Gmail as an email client, FWIW.
The text was updated successfully, but these errors were encountered:
There is a limit to how much data can go into an Intent to start an app. But if you exceed the limit you'll probably get a TransactionTooLargeException.
You should be able to use any character. The ones that are not directly allowed in a mailto: URI will get percent-encoded.
Gmail used to work fine, but they seem to have changed their mailto: handling code and broke it in the process. See also #8.
Hm.... thanks for responding. But I'm not sure if #8 is related to this, really.
It seems interesting that the body text I try to send starts with "Device = ...." and then in the real mail it drops anything including and after the "=" sign. This seems a bit fishy to me. I just got a screen record of a user and it is really like they say. I see the entire buffer (which wasn't that long, actually) and then in Gmail almost everything is dropped. All fine when I tested this same function today with Gmail.
I'm using EmailIntentBuilder in my app Glimpse Notifications. The can create some log data and send it as an email to me. Recently, I'm getting mails where the body seems to be cut off. For example, the body should look like this:
More data follows, a typical body would be 237 lines or 17k bytes.
But I only get:
Is there any resonable explanation for this? Are there any lenth limitations? Any characters I should not use? Any side effects from the fixLineBreaks() method?
Just to be clear, only a fraction of emails are garbled like this. In one case I could determine that the user user Gmail as an email client, FWIW.
The text was updated successfully, but these errors were encountered: