Z zetadan Member Licensed User Longtime User Aug 17, 2014 #1 Can anyone tell me the easiest way to send a simple email where the user chooses the recipient from their email contact list? I just need a simple way to get the email address of the users choice.
Can anyone tell me the easiest way to send a simple email where the user chooses the recipient from their email contact list? I just need a simple way to get the email address of the users choice.
NJDude Expert Licensed User Longtime User Aug 17, 2014 #2 Something like this: B4X: Private i As Intent i.Initialize(i.ACTION_VIEW, "mailto:") StartActivity(I) Upvote 0
Something like this: B4X: Private i As Intent i.Initialize(i.ACTION_VIEW, "mailto:") StartActivity(I)
Z zetadan Member Licensed User Longtime User Aug 17, 2014 #3 Thanks so much. This is what I was looking for. Dan Upvote 0