Page 1 of 1

open native email composer

Posted: Mon Sep 16, 2013 9:14 pm
by Jen5411892

What is the best way to open a native compose email window in a native iOS and Android app?


open native email composer

Posted: Mon Sep 16, 2013 10:34 pm
by Illya Stepanov

Hi Jennifer,

you can use classic 'mailto'

something like this:
code
<a href="mailto:info@mailaddress&#46;com">Mail us< &#47;a>

/code

but to use it with Appery.io the easiest way is to use HTML panel with this code:
code
<a href="mailto:info@mailaddress&#46;com?subject=Sent%20from%20the%20web" data-role="button">
Mail Me
<&#47;a>

/code
as a result you'll see a button which will open the native mail client on a device.


open native email composer

Posted: Tue Sep 17, 2013 2:09 am
by Jen5411892

I'm using an button with the text "email us" on it. I do not see a way to utilize either of those options with a button.


open native email composer

Posted: Tue Sep 17, 2013 2:38 am
by Illya Stepanov

Try placing only this codemailto:info@mailaddress&#46;com/code
in Events section - select button component - Event: Click - Action: Navigate to link - in URL field.


open native email composer

Posted: Tue Sep 17, 2013 7:44 pm
by Jen5411892

Perfect! Thanks so much.