Linked Questions

4 votes
3 answers
18k views

How does one send a simple email message, in code, on Android?
Sankar Ganesh PMP's user avatar
-4 votes
2 answers
1k views

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....
Kumar's user avatar
  • 623
-3 votes
2 answers
674 views

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 ?
TesseractT.Shailab's user avatar
0 votes
2 answers
89 views

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 ...
Rohan Paul's user avatar
1 vote
0 answers
101 views

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; ...
Test-Developer's user avatar
1 vote
1 answer
84 views

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:...
Lara Fab's user avatar
0 votes
2 answers
67 views

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 ...
Hudhud 's user avatar
0 votes
0 answers
42 views

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 ...
Boghy Dickenson's user avatar
0 votes
0 answers
40 views

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 ...
StupidGuy's user avatar
692 votes
41 answers
492k views

Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/html"); intent.putExtra(Intent.EXTRA_EMAIL, "[email protected]"); intent.putExtra(Intent....
dira's user avatar
  • 30.7k
69 votes
4 answers
105k views

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/...
caiocpricci2's user avatar
  • 7,818
34 votes
10 answers
19k views

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 ...
Paul's user avatar
  • 372
27 votes
10 answers
31k views

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 ...
Neal's user avatar
  • 9,669
24 votes
2 answers
35k views

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("...
Amardeepvijay's user avatar
19 votes
3 answers
89k views

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 ...
Siluni Pathirana's user avatar

15 30 50 per page
1
2 3 4 5