[android-developers] Send Email in Android

2013-04-23 Thread amira20101900
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 . Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType(plain/text);

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, amira20101...@gmail.com 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

[android-developers] send email

2012-09-25 Thread Ibrahim Sada
Hi .. Can any1 help me out how to send email from code.. Thanks in advance.. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

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);

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 vk872...@gmail.com wrote: Hi, you can use the following code to send the email from your application String myemail[]={email_id_1,email_id,2};

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 ibrahim.in...@gmail.comwrote: Mr vinay thanks.. But i need to send a mail through code.. Thnks in advance... On 25 September 2012 13:18, vinay kumar vk872...@gmail.com wrote: Hi, you can

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 vk872...@gmail.com wrote: Then check for java gmail client. On Tue, Sep 25, 2012 at 2:59 PM, Ibrahim Sada ibrahim.in...@gmail.comwrote: Mr vinay thanks.. But i need to send a mail through code..

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

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 asheesharya...@gmail.comwrote: ibrahim just go through this

[android-developers] send email with velocity template in android

2012-04-12 Thread Android Developer
Hi All, How to send email from android with velocity template. I tried using with apache velocity jar but it seems android runtime excludes these velocity class E/AndroidRuntime(8721): java.lang.VerifyError: common/util/VelocityUtil How to i use velocity template in android to send a mail.

[android-developers] Send Email without user input

2012-01-15 Thread ambi
Hi, 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? I am aware of the javamail-android available at the following link but would like to know of any other way (perhaps something mentioned in the

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

2012-01-15 Thread Mark Murphy
On Sun, Jan 15, 2012 at 8:59 AM, ambi ambi1...@gmail.com 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

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

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 ambi1...@gmail.com wrote: Hi, My requirement is to build an app that will send email to user at regular intervals but without any input

[android-developers] Send email via ACTION SEND intent

2010-12-27 Thread umakantpatil
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(text/html); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, Subject for email);

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 umakantpat...@gmail.comwrote: 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);

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

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

[android-developers] Send email in background

2010-04-05 Thread RMD
Is there and accepted way to send an email in the background? RMD -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

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 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

[android-developers] Send Email

2010-02-18 Thread Sasikumar.S
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 not want Gmail. Any suggestion ? -- Thanks Regards Sasikumar.S -- You received this message because you are subscribed to the Google Groups Android

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 sasikumar.it1...@gmail.comwrote: Hi, How to send a email in android?. I need to send from some other website email id's like goo...@android.com(or)

[android-developers] Send email in HTML format

2009-11-10 Thread Matt.P
Hello, I would like to send an email in text/html format. I tried by this way : Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setType(text/html); sendIntent.putExtra(Intent.EXTRA_TEXT,Constant.MAIL_BEGIN

[android-developers] Send email to the preconfigured mail id's

2009-06-11 Thread Android Users
Hi, I am able to send a mail by entering the mail id's programmatically. Can anyone please share the code how to send a mail to the preconfigured mail id's programmatically. It is very urgent. Thanks in advance. Awaiting for your response. Regards Androidmailer

[android-developers] Send Email Automatically

2009-04-06 Thread Noam
Hello everyone, I am looking for a way to send an email from a DEFINED email to the user's email. I will also have a defined subject and a defined email - body. My situation is that when the user forgets his password, he needs to enter in his email into the text box and then the application will

[android-developers] Send Email

2009-02-15 Thread Noam
Hello everyone, I am looking for a way to send an email from a specified email (that I predefine the username, password, etc.) to a different specified email that I have in the string: String email = exam...@domain.com; Thanks, Noam. --~--~-~--~~~---~--~~ You

[android-developers] Send Email (Not from User's Account)

2009-02-15 Thread Noam
Hello everyone, I am looking for a way to send an email from a specified email (that I predefine the username, password, etc.) to a different specified email that I have in the string: String email = exam...@domain.com; Thanks, Noam. --~--~-~--~~~---~--~~ You