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.
>
>
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
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
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...
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
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
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
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
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
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
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
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
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
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
> 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
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
16 matches
Mail list logo