0

私は、電子メールを送信するモジュールが 1 つあるアプリケーションで開発しています。多くのチュートリアルを試しましたが、メールが送信されず、例外やエラーはありません。ここでメールを送信するために使用したすべてのコードを共有しています。

final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);

            emailIntent.setType("plain/text");

            emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{ email.getText().toString()});

            emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, name.getText());

            emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, smessage.getText());

          Email.this.startActivity(Intent.createChooser(emailIntent, "Send mail..."));

これは機能していません。

  Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
                        "mailto","waleedahmed_786@yahoo.com", null));
            emailIntent.putExtra(Intent.EXTRA_SUBJECT, "EXTRA_SUBJECT");
            emailIntent.setTypeAndNormalize("plain/text");
startActivity(Intent.createChooser(emailIntent, "Send email..."));

それもうまくいきませんでした。それから私は試しました

            Intent feedback = new Intent(Intent.ACTION_SEND);
            feedback.putExtra(Intent.EXTRA_EMAIL, new String[]{ to});
              //email.putExtra(Intent.EXTRA_CC, new String[]{ to});
              //email.putExtra(Intent.EXTRA_BCC, new String[]{to});
            feedback.putExtra(Intent.EXTRA_SUBJECT, subject);
            feedback.putExtra(Intent.EXTRA_TEXT, message);

              //need this to prompts email client only
            feedback.setType("text/plain");

              startActivity(Intent.createChooser(feedback, "Choose an Email client :"));

これら 3 つのコードをすべて試しましたが、単一のコード スニペットでも機能しませんでした。Google nexus でテストしましたが、機能しませんでした

これが私のxmlです

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/bg">

 <LinearLayout
    android:id="@+id/linearLayout1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/header_bg" >

     <LinearLayout
         android:layout_width="wrap_content"
         android:layout_height="match_parent"
         android:layout_weight="0.28"
         android:background="@drawable/back"
         android:orientation="vertical" >
     </LinearLayout>

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="38dp"
        android:layout_weight="0.28"
        android:paddingLeft="50dp"
        android:paddingTop="15dp"
        android:text="@string/ReceiptOrganizer"
        android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>



 <LinearLayout
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:orientation="vertical" 
     android:background="@drawable/receipt_added_bg">

     <LinearLayout
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:padding="20dp" >

         <TextView
             android:id="@+id/textView2"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:text="Name" />

         <EditText
             android:id="@+id/name"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:layout_weight="1"
             android:ems="10"
             android:inputType="textPersonName" >

             <requestFocus />
         </EditText>

     </LinearLayout>

     <LinearLayout
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:padding="20dp" >

         <TextView
             android:id="@+id/textView2"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:text="Email" />

         <EditText
             android:id="@+id/email"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:layout_weight="1"
             android:ems="10"
             android:inputType="textEmailAddress" >

             <requestFocus />
         </EditText>

     </LinearLayout>

     <LinearLayout
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:padding="20dp" >

         <TextView
             android:id="@+id/textView2"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:text="Feedback" />

         <EditText
             android:id="@+id/msg"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:layout_weight="1"
             android:ems="10"
             android:inputType="textMultiLine" />


     </LinearLayout>

     <LinearLayout
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:padding="20dp" >

         <Button
             android:id="@+id/send"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:gravity="left"/>

     </LinearLayout>

 </LinearLayout>

4

3 に答える 3

0
String to = toEmail.getText().toString();
String subject = emailSubject.getText().toString();
String message = emailBody.getText().toString();
Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, new String[] { to });
email.putExtra(Intent.EXTRA_SUBJECT, subject);
email.putExtra(Intent.EXTRA_TEXT, message);
// need this to prompts email client only
email.setType("message/rfc822");
startActivity(Intent.createChooser(email, "Choose an Email client"));
于 2013-10-03T06:59:19.397 に答える
0

試す

Intent send = new Intent(Intent.ACTION_SENDTO);
        String uriText = "mailto:" + Uri.encode("a@b.com") + 
                  "?subject=" + Uri.encode("the subject") + 
                  "&body=" + Uri.encode("the body of the message");
        Uri uri = Uri.parse(uriText);

        send.setData(uri);
        startActivity(Intent.createChooser(send, "Send mail..."));

インターネット アクセスのマニフェストにアクセス許可を追加します。

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
于 2013-10-03T06:54:40.057 に答える