LoginSignup
3
4

More than 5 years have passed since last update.

メールアプリを起動して送信するプログラムを書いてみた

Last updated at Posted at 2012-03-16
public  void sendMail(Context ct,String mail,String subject, String content){
    Uri uri=Uri.parse("mailto:" + mail); 
    Intent intent=new Intent(Intent.ACTION_SENDTO,uri); 
    intent.putExtra(Intent.EXTRA_SUBJECT,subject);
    intent.putExtra(Intent.EXTRA_TEXT,content);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
    ct.startActivity(intent);
}
3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4