首页 > 代码库 > 安卓开发 调用app发送邮件代码
安卓开发 调用app发送邮件代码
Intent email = new Intent(android.content.Intent.ACTION_SEND);email.setType("plain/text");String[] emailReciver = new String[] { "earshore@gmail.com" };String emailSubject = "BrewClock Feedback";String emailBody = "";// 设置邮件默认地址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, "Please choose an app to email."));
安卓开发 调用app发送邮件代码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。