使用Intent从Android发送电子邮件

【使用Intent从Android发送电子邮件】亦余心之所善兮,虽九死其犹未悔。这篇文章主要讲述使用Intent从Android发送电子邮件相关的知识,希望能为你提供帮助。

  1. Intent i = new Intent( Intent.ACTION_SEND) ;
  2. //i.setType(" text/plain" ); //use this line for testing in the emulator
  3. i.setType( " message/rfc822" ) ; // use from live device
  4. i.putExtra( Intent.EXTRA_EMAIL, new String[ ] { " [email  protected]" } ) ;
  5. i.putExtra( Intent.EXTRA_SUBJECT," subject goes here" ) ;
  6. i.putExtra( Intent.EXTRA_TEXT," body goes here" ) ;
  7. startActivity( Intent.createChooser( i, " Select email application." ) ) ;


    推荐阅读