Android調用系統的發郵件方法

來源:互聯網
上載者:User

//系統郵件系統的動作為android.content.Intent.ACTION_SEND
Intent email = new Intent(android.content.Intent.ACTION_SEND);
email.setType("plain/text");
emailReciver = new String[]{"zhouyongyang122@gmail.com", "421134693@qq.com"};
emailSubject = "你有一條簡訊";
emailBody = sb.toString();

//設定郵件預設地址
email.putExtra(android.content.Intent.EXTRA_EMAIL, emailReciver);
//設定郵件預設標題
email.putExtra(android.content.Intent.EXTRA_SUBJECT, emailSubject);
//設定要預設發送的內容
email.putExtra(android.content.Intent.EXTRA_TEXT, emailBody);
//調用系統的郵件系統
startActivity(Intent.createChooser(email, "請選擇郵件發送軟體"));

 

帶附件:

Intent returnIt = new Intent(Intent.ACTION_SEND);

       String[] tos = { "wangmeng@gmail.com" }; //send to someone

       String[] ccs = { "tongyue@gmail.com" };  //Carbon Copy to someone

       returnIt.putExtra(Intent.EXTRA_EMAIL, tos);

       returnIt.putExtra(Intent.EXTRA_CC, ccs);

       returnIt.putExtra(Intent.EXTRA_TEXT, "body");

       returnIt.putExtra(Intent.EXTRA_SUBJECT, "subject");

Uri uri = Uri.parse("file:///sdcard/mysong.mp3");

returnIt.putExtra(Intent.EXTRA_STREAM, uri);

returnIt.setType("audio/mp3");  //use this format no matter what your attachment type is 

returnIt.setType("message/rfc882");

Intent.createChooser(returnIt, "Choose Email Client");

startActivity(returnIt);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.