Android sends emails via intent with attachments

Source: Internet
Author: User
How can I send emails with attachments in the Android system? In fact, intent can easily send emails, which only takes 10 lines. Code Here, Android development network uses the android123.cwj file on sdcard as an example to send an email through intent. The complete code is as follows:

File file = new file ("\ sdcard \ android123.cwj"); // attachment file address

Intent intent = new intent (intent. action_send );
Intent. putextra ("subject", file. getname ());//
Intent. putextra ("body", "android123-email sender"); // body
Intent. putextra (intent. extra_stream, Uri. fromfile (File); // Add an attachment. the attachment is a file object.
If (file. getname (). endswith (". GZ ")){
Intent. settype ("application/X-gzip"); // if it is GZ, use the gzip mime
} Else if (file. getname (). endswith (". txt ")){
Intent. settype ("text/plain"); // mime of text/plain is used for plain text.
} Else {
Intent. settype ("application/octet-stream"); // all others use stream as binary data for sending
}
Startactivity (intent); // call the system's mail client to send

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.