Email sending error

This is a discussion on Email sending error within the Droid Development forums, part of the Droid Hacking category; Hi, This a part of my code for sending e-mail message. But when I run it on Motorola Droid it crashed with error: "Sorry! The ...

+ Reply to Thread
Results 1 to 1 of 1

Thread: Email sending error

  1. Droid Newbie
    antaresm's Avatar
    Member #
    94758
    Join Date
    Jul 2010
    Posts
    1
    Phone
    Desire, Droid, Liquid
    #1

    Thumbs up Email sending error

    Hi,
    This a part of my code for sending e-mail message. But when I run it on Motorola Droid it crashed with error: "Sorry! The application Gmail (process com.google.android.gm) has stopped unexpectedly. Please try again."
    Code:
    	final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); 
            emailIntent.setType("*/*");
            emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{ address });
            emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subj");
            ArrayList<File> flist = new ArrayList<File>();
    		try {
    			for (int i = 0; i < contacts.size(); i++){
    				MyData c = data.get(i);
    				File f;				
    				f = File.createTempFile(c.name, ".dta");
    				c.writeToFile(f);				
    				emailIntent.putExtra(android.content.Intent.EXTRA_STREAM, f.toURI());				
                                    flist.add(f);
    			}
    		} catch (IOException e) {			
    			e.printStackTrace();
    		}
            context.startActivity(Intent.createChooser(emailIntent, "Send mail..."));
    May be somebody knows what a problem?
    Thanks
  2. Sponsor
    DF Advertising
    Join Date
    Nov 2008
    Location
    DroidForums.net
     
     
     
     

Sponsors

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Similar Threads

  1. sending pictures to email? Possible?
    By Margotsha in forum Tech Issues, Bug Reports & Suggestions
    Replies: 3
    Last Post: 07-25-2010, 09:29 AM
  2. sending email
    By 83mulligan in forum Tech Issues, Bug Reports & Suggestions
    Replies: 0
    Last Post: 04-10-2010, 08:39 PM
  3. Eris not sending email?
    By klrodrigues in forum HTC Droid Eris
    Replies: 0
    Last Post: 03-02-2010, 06:21 AM
  4. sending email
    By big.daddy in forum Tech Issues, Bug Reports & Suggestions
    Replies: 5
    Last Post: 02-20-2010, 01:51 PM
  5. Sending files in an email.
    By jmirish in forum Droid General Discussions
    Replies: 0
    Last Post: 11-21-2009, 08:25 PM

Search tags for this page

com.google.android.gm liquid email
,

droid email sending error

,
email sending error com.google.android
,
gmail crashes when i send android
,
how to stop gmail sending file on android
,
htc thunderbolt process com.google.android.gm has stopped
,

process com.google.android.gm has stopped unexpectedly

,
process com.google.android.gm has stopped unexpectedly bioni
,
process com.google.android.gm stopped
,
processcom.google.android.gm
,
processcom.google.android.gm error
,

sorry the application gmail (process com.google.android.gm)

,
startactivity send email has stop unexpectly
,

the application gmail process com.google.android.gm

,
the application gmail process.com.google.android.gm has stop
Click on a term to search our site for related topics.

Tags for this Thread