Linked Questions
65 questions linked to/from How to send emails from my Android application?
4 votes
3 answers
18k views
How to send email in Android ? [duplicate]
How does one send a simple email message, in code, on Android?
-4 votes
2 answers
1k views
How to Email sending in android [duplicate]
Possible Duplicate: How to send email from my Android application? I am creating an main.xml How to send Email in android. But mandatory is TO is fixed id (ex: To:[email protected]) I have main....
-3 votes
2 answers
674 views
How to send an email to the address stored in an EditText? [duplicate]
Lets say I have a button and an edit text in a layout. How do i send an email that says some messages to that address which is the edit text in android studio ?
0 votes
2 answers
89 views
Send information to email [duplicate]
I have an activity, which has two TextFields, where the user can input some text. There is a button below them, which I want to submit the information input the two TextFields. Either as an email or ...
1 vote
0 answers
101 views
Send email in Android [duplicate]
In android how to send Email automatically. I followed thisTutorial But not working for meHere the code package com.example.email; import java.util.Properties; import javax.mail.Authenticator; ...
1 vote
1 answer
84 views
How can I send an email in android app? [duplicate]
How can I send an email in android app to a static recipient <EditText android:id="@+id/from" android:drawableStart="@drawable/ic_settings_phone_black_24dp" android:...
0 votes
2 answers
67 views
How to use emailintent properly? [duplicate]
I'm trying to let my app send a new password to ones email but it opens a page and gives the message "No apps can perform this action" with the title "Send email" (which I've have I know), why? The ...
0 votes
0 answers
42 views
Sending an email with the values parsed from the database [duplicate]
I'm trying to implement a way in which the "client" can apply to certain jobs I post. I got the display and the database, and what I'm trying to do now is to make a button that automatically sends ...
0 votes
0 answers
40 views
Android: Send information from App [duplicate]
I've developed an Android. Being my very first app, it's a silly one. However, I want the app to send me the names entered by the user as an email, or upload them online, basically somewhere where I ...
692 votes
41 answers
492k views
Send Email Intent
Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/html"); intent.putExtra(Intent.EXTRA_EMAIL, "[email protected]"); intent.putExtra(Intent....
69 votes
4 answers
105k views
What are the possible intent types for intent.setType(type)?
I was searching about how to send an email from my app and I came across this topic: how to send email from my android app it solves the problem adding a type to his action send: i.setType("message/...
34 votes
10 answers
19k views
Android Studio mailto Intent doesn't show subject and mail body
I'm trying to send an e-mail from my Android App. With the click on a button, gmail should open and show a new email with my previously defined recipient, subject and email body. So far I've tried ...
27 votes
10 answers
31k views
Android Intent Chooser to only show E-mail option
My app integrates e-mail where the user can submit a bug report, feedback, etc. from the app directly. I'm using the application/octet-stream as the SetType for the Intent. When you go to submit the ...
24 votes
2 answers
35k views
Sending Email from Android app when click on button
I need to provide feature for users where users can share some data by sending email. I used below code. Intent email = new Intent(android.content.Intent.ACTION_SENDTO); email.setType("...
19 votes
3 answers
89k views
How to code using android studio to send an email
I'm planning to develop an android mobile application using android studio, where an user give email address and secret code. Then that secret code should be send to mentioned email address. Can any ...