Re: [android-developers] Send Email in Android

2013-04-23 Thread Manish Srivas
i think your device does not contain any email application like Gmail or email On Tue, Apr 23, 2013 at 10:48 AM, wrote: > Hello >i have a simple program that send an email when you press a > button button i get an alert that No application can perform this action. > >

Re: [android-developers] send email

2012-09-25 Thread Jovish P
You can refer K-9 , K-9 is an opensource email client based on the Email application shipped with the initial release of Android. link : http://code.google.com/p/k9mail/ regards jovish On Tue, Sep 25, 2012 at 3:35 PM, Asheesh Arya wrote: > ibrahim just go through this link > http://www.jonde

Re: [android-developers] send email

2012-09-25 Thread Asheesh Arya
ibrahim just go through this link http://www.jondev.net/articles/Sending_Emails_without_User_Intervention_%28no_Intents%29_in_Androidyou got some idea. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to and

Re: [android-developers] send email

2012-09-25 Thread Ibrahim Sada
Dear do you have any example code for it... On 25 September 2012 15:02, vinay kumar wrote: > Then check for java gmail client. > > > On Tue, Sep 25, 2012 at 2:59 PM, Ibrahim Sada wrote: > >> Mr vinay thanks.. >> But i need to send a mail through code.. >> Thnks in advance...

Re: [android-developers] send email

2012-09-25 Thread vinay kumar
Then check for java gmail client. On Tue, Sep 25, 2012 at 2:59 PM, Ibrahim Sada wrote: > Mr vinay thanks.. > But i need to send a mail through code.. > Thnks in advance... > > > On 25 September 2012 13:18, vinay kumar wrote: > >> Hi, >> >> you can use the following code to se

Re: [android-developers] send email

2012-09-25 Thread Ibrahim Sada
Mr vinay thanks.. But i need to send a mail through code.. Thnks in advance... On 25 September 2012 13:18, vinay kumar wrote: > Hi, > > you can use the following code to send the email from your application > > > String myemail[]={email_id_1,email_id,2}; > > Inten

Re: [android-developers] send email

2012-09-25 Thread vinay kumar
Hi, you can use the following code to send the email from your application String myemail[]={email_id_1,email_id,2}; Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,myemail); emailIntent.putExt

Re: [android-developers] Send Email without user input

2012-01-15 Thread Dhaval Varia
http://stackoverflow.com/questions/2020088/sending-email-in-android-using-javamail-api-without-using-the-default-android-ap On Jan 15, 2012 7:29 PM, "ambi" wrote: > Hi, > > My requirement is to build an app that will send email to user at > regular intervals but without any input from the user. I

Re: [android-developers] Send Email without user input

2012-01-15 Thread Kostya Vasilyev
A particular device may have an Email application different from the one in Android sources (e.g. HTCs and the new Samsungs come to mind). The user may install any of the third-party Email clients (K9, ProfiMail, Mail Droid, Enhanced Email, Yahoo Mail, Yandex Mail, ) The user may not have an

Re: [android-developers] Send Email without user input

2012-01-15 Thread Mark Murphy
On Sun, Jan 15, 2012 at 8:59 AM, ambi wrote: > My requirement is to build an app that will send email to user at > regular intervals but without any input from the user. Is there any > way to do that? Use JavaMail or another email API. Or, do the mailing from some Web service that you host, and h

Re: [android-developers] Send email via ACTION SEND intent

2010-12-27 Thread XC He
If there are several mail clients in the device, and you just want one receive your intent. I think before your startActivity(), you have to setClassName(String packageName, String className) ex. sendIntent.setClassName("com.android.email", "com.android.email.activity.MessageCompose"); 2010/12/28

Re: [android-developers] Send email via ACTION SEND intent

2010-12-27 Thread umakantpatil
If I make text/plain then it still shows buletooth, as well as it shows many other things like facebook, twitter... etc etc.. I just want emails.. :) -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to and

Re: [android-developers] Send email via ACTION SEND intent

2010-12-27 Thread praveena ankitha
use emailIntent.setType("text/plain"); in your code On Tue, Dec 28, 2010 at 11:17 AM, umakantpatil wrote: > Hi, > I have an article and I have given share button. On click of it. I have > below code. > > Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); > emailIntent.setType("t

Re: [android-developers] Send email in background

2010-04-05 Thread Jiri
See this: http://groups.google.com/group/android-developers/browse_thread/thread/9c7bca0a1b6957a9 Jiri On 05/04/2010 15:58, Mark Murphy wrote: Is there and accepted way to send an email in the background? You would need to integrate your own email client library (e.g., JavaMail), as there

Re: [android-developers] Send email in background

2010-04-05 Thread Mark Murphy
> Is there and accepted way to send an email in the background? You would need to integrate your own email client library (e.g., JavaMail), as there is no way to send email in Android natively without user intervention. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer

Re: [android-developers] Send Email

2010-02-18 Thread kavitha sunil
There is an exchange server option, configure that and you will be able to send the same. On Thu, Feb 18, 2010 at 1:59 PM, Sasikumar.S wrote: > Hi, > > How to send a email in android?. > > I need to send from some other website email id's like goo...@android.com(or) > i...@cricinfo.com > > I need