Android Call system email multiple attachments

Source: Internet
Author: User

Invoking other programs in Android for related processing is the intent used. Of course, email is no exception.
In Android, there are three types of intent that call email:
Intent.action_sendto Send without attachment
Intent.action_send Send with Attachment
Intent.action_send_multiple Send with multiple attachments

Of course, the so-called call email, just say that email can receive intent and do these things, may also have other applications to implement the relevant functions, so in the execution, the selection box will appear to select.

1. Use Sentto to send

                Intent data=new Intent (intent.action_sendto);  
                Data.setdata (Uri.parse ("mailto:455245521@qq.com"));  
                Data.putextra (Intent.extra_subject, "This is the title");  
                Data.putextra (Intent.extra_text, "This is content");  
                

Set the parameters for the message by Putextra to the intent.

2. Send by using Send

		Intent Intent = new Intent (intent.action_send);
		String[] tos = {"fdafdafa@gmail.com"}; 
		String[] CCS = {"gegeff@gmail.com"}; 
		String[] BCCs = {"fdafda@gmail.com"};
		Intent.putextra (Intent.extra_email, TOS);
		Intent.putextra (INTENT.EXTRA_CC, CCS);
		Intent.putextra (INTENT.EXTRA_BCC, BCCs);
		Intent.putextra (Intent.extra_text, "body");
		Intent.putextra (Intent.extra_subject, "SUBJECT");
		
	Intent.putextra (Intent.extra_stream, Uri.parse ("file:///sdcard/Chrysanthemum.jpg"));
		Intent.settype ("image/*");
		Intent.settype ("message/rfc882");
		Intent.createchooser (Intent, "Choose Email Client");
		StartActivity (Intent);

Very simple, send the message, there are recipients, CC, the secret sender. namely, by
Intent.extra_email,
INTENT.EXTRA_CC,
Intent.extra_bcc
For Putextra to set up.

When a single attachment is sent, the Intent.extra_stream is used to set the address URI of the attachment.

3. Use Send_multiple to send multiple attachments

		Intent Intent = new Intent (intent.action_send_multiple);
		String[] tos = {"wingfourever@gmail.com"}; 
		String[] CCS = {"tongyue@gmail.com"}; 
		Intent.putextra (Intent.extra_email, TOS);
		Intent.putextra (INTENT.EXTRA_CC, CCS);
		Intent.putextra (Intent.extra_text, "body");
		Intent.putextra (Intent.extra_subject, "SUBJECT");
		
		arraylist<uri> Imageuris = new arraylist<uri> ();
		Imageuris.add (Uri.parse ("file:///sdcard/Chrysanthemum.jpg"));
		Imageuris.add (Uri.parse ("file:///sdcard/Desert.jpg"));		
		Intent.putparcelablearraylistextra (Intent.extra_stream, imageuris);
		Intent.settype ("image/*");
		Intent.settype ("message/rfc882");
		Intent.createchooser (Intent, "Choose Email Client");
		StartActivity (Intent);

Send multiple attachments, the most important time, through the Putparcelablearraylistextra of multiple attachments to the URI address list set into the OK. In fact, it is very simple.

The

below is the result of running on the Samsung Galaxy Tab 2 10.1:
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.