Created
January 8, 2013 01:42
-
-
Save z8888q/4480342 to your computer and use it in GitHub Desktop.
android send email
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Uri uri = Uri.parse("mailto:"); | |
Intent intent = new Intent(Intent.ACTION_SENDTO, uri); | |
intent.putExtra(Intent.EXTRA_SUBJECT, " 云盘分享文件:" + emailSubject); // 主题 | |
intent.putExtra(Intent.EXTRA_TEXT, emailBody); // 正文 | |
startActivity(Intent.createChooser(intent, | |
"Select the mail application")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment