Re: [android-developers] Confirmation when mail has been sent

2012-05-30 Thread IronBlossom
Same issue , just the difference is intent type, (intent.setType(application/*), because im sending email with attachments (pdf or zip). But my problem is with the attachment.The Intent.EXTRA_STREAM read from sdcard but after sending the mail i want to delete it from sdcard. So i used

Re: [android-developers] Confirmation when mail has been sent

2012-05-30 Thread James Black
What I settled on it to store the file information in a list, and in on destroy I delete them. On May 30, 2012 7:24 AM, IronBlossom i4idrh...@gmail.com wrote: Same issue , just the difference is intent type, (intent.setType(application/*), because im sending email with attachments (pdf or

[android-developers] Confirmation when mail has been sent

2010-09-29 Thread Amit
HI All, I am using the configured mail applications on the device to send e- mail from my android application. When the user has actually send the mail, I want to know whether the mail has been sent or not? How can i get the same information back in my Android application. Here is my current

Re: [android-developers] Confirmation when mail has been sent

2010-09-29 Thread Mark Murphy
On Wed, Sep 29, 2010 at 7:02 AM, Amit amitmishr...@gmail.com wrote: When the user has actually send the mail, I want to know whether the mail has been sent or not? Sorry, but that is not part of the ACTION_SEND system, as far as I know. -- Mark Murphy (a Commons Guy) http://commonsware.com |

Re: [android-developers] Confirmation when mail has been sent

2010-09-29 Thread { Devdroid }
On 29 September 2010 13:02, Amit amitmishr...@gmail.com wrote: HI All, I am using the configured mail applications on the device to send e- mail from my android application. When the user has actually send the mail, I want to know whether the mail has been sent or not? How can i get the