我点击button
时尝试自动发送电子邮件,但没有成功。
这是我添加文件和打开gmail(有意图)的代码。
我点击button
时需要自动发送电子邮件。
(uris对象是我添加文件的ArrayList)
我该怎么做?
public void onClick(View view)
{
try
{
// Intent to send the email
Intent emailIntent = new Intent(Intent.ACTION_SEND_MULTIPLE);
// Set the type to 'email'
emailIntent .setType("vnd.android.cursor.dir/email");
String to[] = {"niravisrur1@gmail.com"};
emailIntent.putExtra(Intent.EXTRA_EMAIL, to);
// The attachment
emailIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
// The mail subject
startActivity(Intent.createChooser(emailIntent , "Send email..."));
}
}
catch (Exception e)
{
Log.e("SendMail", e.getMessage(), e);
}