[android-developers] sending email ?

2012-09-16 Thread mohammed Nuhail
how to send email in background ? -- 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] sending email ?

2012-09-16 Thread Kristopher Micinski
use a SMTP library and send it over an internet connection. kris On Sun, Sep 16, 2012 at 7:21 AM, mohammed Nuhail nuhail...@gmail.com wrote: how to send email in background ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] sending email ?

2012-09-16 Thread Muhammad Salahuddin
How to delete SMS of particular Number in android programitically just after recieving On Sun, Sep 16, 2012 at 4:27 AM, Kristopher Micinski krismicin...@gmail.com wrote: use a SMTP library and send it over an internet connection. kris On Sun, Sep 16, 2012 at 7:21 AM, mohammed Nuhail

Re: [android-developers] sending email ?

2012-09-16 Thread Asheesh Arya
plz refer this link sending mail in background!! http://www.jondev.net/articles/Sending_Emails_without_User_Intervention_%28no_Intents%29_in_Android -- 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] sending email to varify email address.

2012-03-08 Thread ravindra bhavsar
Hello sir /Madam, I m new in android development i want send email for verifying that email address.how to i do that.if any on know please tell me procedure and tutorial . Thanks in advanced... -- You received this message because you are subscribed to the

Re: [android-developers] sending email to varify email address.

2012-03-08 Thread Justin Anderson
http://bit.ly/A3VFjN Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Mar 7, 2012 at 1:37 AM, ravindra bhavsar ravindra.bhavs...@gmail.com wrote: Hello sir /Madam, I m new in android development i want send email for verifying

Re: [android-developers] sending email automatically

2011-10-12 Thread Milad khajavi
see this post: http://stackoverflow.com/questions/2020088/sending-email-in-android-using-javamail-api-without-using-the-default-android-app On Tuesday, October 11, 2011, arun kumar hariarun2...@gmail.com wrote: SMTP means simple mail transfer protocol. first search in google about smtp in

Re: [android-developers] sending email automatically

2011-10-11 Thread arun kumar
SMTP means simple mail transfer protocol. first search in google about smtp in android and then you got some idea... On 10/10/11, rahul verma rahulsgonnar...@gmail.com wrote: What is SMTP? On 10 Oct 2011 06:16, rahul verma rahulsgonnar...@gmail.com wrote: Yeah i too need to know that.

Re: [android-developers] sending email automatically

2011-10-10 Thread metin ögtem
Android mail system requre Gmail or other authentication..That means some screnn pops up and show users to send mail to you.. 2011/10/10, rahul verma rahulsgonnar...@gmail.com: What is SMTP? On 10 Oct 2011 06:16, rahul verma rahulsgonnar...@gmail.com wrote: Yeah i too need to know that.

Re: [android-developers] sending email automatically

2011-10-09 Thread rahul verma
Yeah i too need to know that. .whenever we try to send a mail a gmail app screen comes ,what is the way to omit that i mean send the mail automatically On 8 Oct 2011 22:43, Palike palo...@centrum.sk wrote: Hi, at first sorry for my English. I need to make app that will automatically send a file

Re: [android-developers] sending email automatically

2011-10-09 Thread rahul verma
What is SMTP? On 10 Oct 2011 06:16, rahul verma rahulsgonnar...@gmail.com wrote: Yeah i too need to know that. .whenever we try to send a mail a gmail app screen comes ,what is the way to omit that i mean send the mail automatically On 8 Oct 2011 22:43, Palike palo...@centrum.sk wrote: Hi,

[android-developers] sending email automatically

2011-10-08 Thread Palike
Hi, at first sorry for my English. I need to make app that will automatically send a file from the SD card. I thought that I will do it through email. I write the code to send email import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle;

Re: [android-developers] sending email automatically

2011-10-08 Thread Michael Banzon
Look at SMTP. On Sat, Oct 8, 2011 at 7:11 PM, Palike palo...@centrum.sk wrote: Hi, at first sorry for my English. I need to make app that will automatically send a file from the SD card. I thought that I will do it through email. I write the code to send email import android.app.Activity;

Re: [android-developers] sending email automatically

2011-10-08 Thread lbendlin
to extend on that - look into including your own SMTP client. -- 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

[android-developers] Sending EMAIL

2010-08-19 Thread lloyd1949
Hi guys: I have a situation where I allow the user to email a number of documents from my app. The problem is that one request may result in the sending of 3 or 4 emails. Ideally I would like to get all the SEND info at the beginning and at a minimum populate all the fields so that all the user

[android-developers] Sending email by Intent... not simply composing a message

2010-08-11 Thread DulcetTone
I can't see that there is a means of sending an email programmatically by Intent, as an analog to sending an SMS. ACTION_SENDTO simply allows you to pre-fill-out a composition of a new email (subject, body, addressees, etc), but not cause it to be sent. Is this correct? tone -- You received

Re: [android-developers] Sending email by Intent... not simply composing a message

2010-08-11 Thread Mark Murphy
On Wed, Aug 11, 2010 at 2:37 PM, DulcetTone dulcett...@gmail.com wrote: I can't see that there is a means of sending an email programmatically by Intent, as an analog to sending an SMS.  ACTION_SENDTO simply allows you to pre-fill-out a composition of a new email (subject, body, addressees,

Re: [android-developers] Sending email by Intent... not simply composing a message

2010-08-11 Thread { Devdroid }
On 11 August 2010 20:37, DulcetTone dulcett...@gmail.com wrote: I can't see that there is a means of sending an email programmatically by Intent, as an analog to sending an SMS.  ACTION_SENDTO simply allows you to pre-fill-out a composition of a new email (subject, body, addressees, etc), but

[android-developers] sending email with a file attached that is not on sdcard

2010-04-29 Thread Jay-andro
Background: I have a voice messaging app that needs to send an email with the audio file attached when user records and presses send. I dont want to have the user see a mail client and push send in it. He's already aware my app is going to send an email and has pressed a send button in the app.

[android-developers] Sending email with attachment does not include the attachment

2010-04-01 Thread powder
Hi, I never got this to work on a real device, got the email but no attachment, when installing K9 on a emulator and then sending the email I see the mail in the outbox with a size of 0 bytes: public static void sendFile(Context context) { File exportDir = new

[android-developers] Sending email with attachment

2010-04-01 Thread powder
Hi, I never got this to work on a real device, got the email but no attachment, also when installing K9 on a emulator and then sending the email I see the mail in the outbox with a size of 0 bytes: public static void sendFile(Context context) { File exportDir = new

[android-developers] Sending email with attachment

2010-02-21 Thread Neilz
Hi. I send an email from my app with this code: final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType(plain/text); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] {m...@gmail.com});

[android-developers] Sending email with Apache commons

2009-09-16 Thread Isuru danagalle
Hi All, I am trying a simple send mail application using apache commons library.Here is the code. The email sending code is working fine in a standalone application.However when I try to run it as android application it gave following error message. trouble processing

[android-developers] Sending Email

2009-09-08 Thread Iroid
Hello All, Can I send an email without invoking any activity (with Send/SendTo action)? Just compose a mail and send to recipient from my application. Appreciate your response. Thanks Irfan --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Sending Email

2009-09-08 Thread Jason Proctor
Only if you include your own SMTP code. ACTION_SEND will always prompt the user, at least if they choose one of the built-in apps. did we ever get to the bottom of why JavaMail doesn't work on Android? some Dalvik translation problem IIRC -- jason.vp.engineering.particle

[android-developers] sending email using java mail

2009-08-06 Thread amy0205
hi! i was able to compile and successfully send an email that looks like these: http://davanum.wordpress.com/2007/12/22/android-send-email-via-gmail-actually-via-smtp/ using a java project. but when i tried to use it with android using the emulator, the application crashed. when i traced the

[android-developers] sending email from android emulator

2009-06-22 Thread lucj06
Hello, I'd like to know if it's possible to send an email from the emulator (i'm using cupcake). I'm using something like: Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_EMAIL, to); sendIntent.putExtra(Intent.EXTRA_SUBJECT, subject);

[android-developers] Sending Email using android app

2009-05-14 Thread Salman Wahid
Hi I am trying to send email using the andriod application I have tried the following code. The problem i am facing is that the email intent is opened but the send to address, subject and body i snot copied to the email intent. and can any one tell what if i want to sent a pic

[android-developers] Sending Email from my application in emulator

2009-05-12 Thread swathi
I have tried with the following code ,but i got an error messageNO applications can perform this action. Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_EMAIL, mailto); sendIntent.putExtra(Intent.EXTRA_SUBJECT, subject.getText().toString());

[android-developers] Sending Email from Android application

2009-05-12 Thread Swathi
I have tried to send email from myapplication in emulator , with following code. Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_EMAIL, mailto); sendIntent.putExtra(Intent.EXTRA_SUBJECT, subject.getText().toString()); sendIntent.putExtra(Intent.EXTRA_TEXT,

[android-developers] sending email

2008-12-04 Thread dilu
Hi i want to develop an aplication which can send email .so can any one provide me sample code or any link that is useful.I got one site davanum srinivas blog,but tht code is too old and full code is not available right now,they have removed it from site.So provide me some link. Thankss dilu

[android-developers] Sending email

2008-10-30 Thread john
Hello! Thanks in advance for trying to help me out. It doesn't seem like anyone has found a solution to this problem yet, so hopefully we can figure this out and help a lot of people. I'm trying to get my application to send an email, but i can't seem to find any solutions. Here's what I'm