Skip to main content

Posts

Send email through Android application

Hi friends,In this tutorial I'm going to talk about how to send mail through android application . So now have a look on the layout part:- main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout android:id="@+id/LinearLayout01" android:layout_width="fill_parent"         android:layout_height="fill_parent"         xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"        android:background="@drawable/background"         >         <TextView             android:layout_width="wrap_content"             android:layout_height="wrap_content"         android:id="@+id/emailaddress"    ...