Page 1 of 1

mobileComposeMail broken on iPhone 6s [Solved]

Posted: Wed Mar 09, 2016 3:22 am
by quailcreek
Has anybody else run into this. I tested on my iPhone 4 and 6s. The 4 sends the email. The 6s composes the data but no email is sent.

http://quality.livecode.com/show_bug.cgi?id=17089

Re: mobileComposeMail broken on iPhone 6s

Posted: Wed Mar 09, 2016 5:21 am
by Dixie
Can't say about the 6s... Works on a 5s !

Re: mobileComposeMail broken on iPhone 6s

Posted: Wed Mar 09, 2016 4:27 pm
by quailcreek
Thanks, Dixie.
What version of iOS is on your 5s?

Re: mobileComposeMail broken on iPhone 6s

Posted: Wed Mar 23, 2016 10:59 pm
by quailcreek
Does anybody have an iPhone 6, 6s or 6s Plus they can test this on? Not sure if it's my phone or LC. So far no movement of the bug report so I thought I'd try to gather some additional feedback. I'm getting a little twitchy. This is holding up 6 apps from going to the app store. :(

Re: mobileComposeMail broken on iPhone 6s

Posted: Wed Mar 23, 2016 11:17 pm
by Dixie
Would you like to post your script ?

Re: mobileComposeMail broken on iPhone 6s

Posted: Wed Mar 23, 2016 11:21 pm
by quailcreek
Hi Dixie,
Thanks. Here you go.

Code: Select all

on mouseUp
   put "LC 8 DP15  Xcode 7.2.1" into theList
   mobileComposeMail "AAA Collection." && date(),,,,theList
   answer the result
end mouseUp

Re: mobileComposeMail broken on iPhone 6s

Posted: Thu Mar 24, 2016 12:19 am
by Dixie
Make a stack... put the following in a button..

Code: Select all

on mouseUp
   --put "temp.png" into tAttached["file"]
   --put "image/png" into tAttached["type"]
   --put "temp.png"  into tAttached["name"]
   
   put "Testing Mail" into tSubject
   put empty into tRecipient
   put "Write your stuff here" into tBody
   iphoneComposeMail tSubject, tRecipient, , , tBody   --,tAttached
end mouseUp
I left the tRecipient variable empty, put in a valid email address when the email app opens... but there again, you could pre-populate it.

Re: mobileComposeMail broken on iPhone 6s

Posted: Thu Mar 24, 2016 12:37 am
by quailcreek
Same result. I tried mobileCompose with and without "answer the result". I thought that might have something to do with it. I tried iPhoneCompose with and without. It answers "sent" but nothing shows up. Did you test it on an iPhone 6?

Re: mobileComposeMail broken on iPhone 6s

Posted: Fri Mar 25, 2016 6:13 pm
by quailcreek
Asking for a little assistance. This works on iPhone 4, 5s, and 6. My iPhone 6s is the only 6s device I have for testing right now. If anybody has a 6s or 6s Plus that can test this please let me know. This is very odd and the only thing I can figure is that the 6S family are very different hardware or that there is something goofy with my specific iPhone. I very mush appreciate any help.

Re: mobileComposeMail broken on iPhone 6s [Solved]

Posted: Tue Mar 29, 2016 4:27 pm
by quailcreek
It appears that when I went from an iPhone 4 to an iPhone 6s the restore brought along an extra mail account. I deleted the superfluous account in the mail app and viola. Thanks to the LC QC guys for helping me resolve this.