You are on page 1of 2

EMAIL PROGRAM:

XMAL CODE:

<?xml version="1.0" encoding="utf-8"?>


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">

<EditText
android:id="@+id/e1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"

android:hint="enter your email" />

<EditText
android:id="@+id/e2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:hint="enter your name" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:hint="enter your name"
android:id="@+id/e3"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="send email"
android:onClick="processmail"
android:id="@+id/btn1"/>

</LinearLayout>

JAVA CODE:

package com.example.email;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;

public class MainActivity extends AppCompatActivity {


EditText t1, t2, t3;
Button b1;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
t1 = (EditText) findViewById(R.id.e1);
t2 = (EditText) findViewById(R.id.e2);
t3 = (EditText) findViewById(R.id.e3);
b1 = (Button) findViewById(R.id.btn1);

public void processmail(View view) {


String to=t1.getText().toString();
String sub=t2.getText().toString();
String msg=t3.getText().toString();

Intent intent=new Intent(Intent.ACTION_SEND);


intent.putExtra(Intent.EXTRA_EMAIL,to);
intent.putExtra(Intent.EXTRA_SUBJECT,sub);
intent.putExtra(Intent.EXTRA_TEXT,msg);

intent.setType("message/rfc822");
startActivity(intent.createChooser(intent,"send email"));

}
}

You might also like