大家好,我想制作反馈页面,该页面有四个EditText
1. 姓名
2. 电子邮件
3. 电话
4. 反馈正文
,所以我想通过电子邮件获得用户反馈。我认为它可能与 SMTP 和 Gmail。
请帮我。
先感谢您!
大家好,我想制作反馈页面,该页面有四个EditText
1. 姓名
2. 电子邮件
3. 电话
4. 反馈正文
,所以我想通过电子邮件获得用户反馈。我认为它可能与 SMTP 和 Gmail。
请帮我。
先感谢您!
试试这个:
Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, "Your Email Here ...");
email.putExtra(Intent.EXTRA_SUBJECT, subject);
email.putExtra(Intent.EXTRA_TEXT, message);
email.setType("message/rfc822");
startActivity(Intent.createChooser(email, "Choose an Email client :"));