我只是想通过我的应用程序打开Gmail应用程序,并想设置应用程序中的电子邮件,主题和消息.
我已经尝试过GmailService,但它不支持密件抄送或cc电子邮件.
链接:https://github.com/yesidlazaro/GmailBackground
BackgroundMail.newBuilder(this) .withUsername("username@gmail.com") .withPassword("password12345") .withMailto("toemail@gmail.com") .withType(BackgroundMail.TYPE_PLAIN) .withSubject("this is the subject") .withBody("this is the body") .withOnSuccessCallback(new BackgroundMail.OnSuccessCallback() { @OverrIDe public voID onSuccess() { //do some magic } }).withOnFailCallback(new BackgroundMail.OnFailCallback() { @OverrIDe public voID onFail() { //do some magic } }).send();
我想将bcc和cc功能与附件,主题和消息一起使用.
解决方法:
通过Intent打开gmail
Intent intent = new Intent(Intent.ACTION_VIEW);intent.setData(Uri.parse("abc@gmail.com"));intent.setClassname("com.Google.androID.gm", "com.Google.androID.gm.ComposeActivityGmail");intent.putExtra(Intent.EXTRA_CC, new String[]{"xyz@gmail.com"});intent.putExtra(Intent.EXTRA_BCC, new String[]{"pqr@gmail.com"});intent.putExtra(Intent.EXTRA_SUBJECT, "your subject goes here...");intent.putExtra(Intent.EXTRA_TEXT, "Your message content goes here...");startActivity(intent);
只需通过EXTRA_CC&意向参数中的EXTRA_BCC
总结以上是内存溢出为你收集整理的java-如何在android中打开gmail全部内容,希望文章能够帮你解决java-如何在android中打开gmail所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)