I have spent lot of time, but alas! I am stuck in this problem. I want to send email in background in android application but I can't find way, how can I do it. Please anybody tell me some way how can I send background email in android application for forget password.
Asked
Active
Viewed 374 times
-1
-
what do you mean by background email. provide more details on what exactly you are trying to achieve. – Viral Patel May 05 '16 at 10:41
-
I want to send email when user forget their password in android application. – nabia saroosh May 05 '16 at 10:44
-
1here you go: http://stackoverflow.com/questions/19947685/how-to-send-email-in-background-in-android – May 05 '16 at 10:50
-
Also, you could look into using something existing for this. E.g. http://docs.apigee.com/api-baas/content/resetting-user-password-3 – Roman May 05 '16 at 10:51
-
Yes, I have read this site and use "BackgroundMail Library" but, it is not accepting my code just showing red lines in code at BackgroundMail and other words. – nabia saroosh May 05 '16 at 10:58
-
1For something like this where the user is going to be able to reset the password, you don't want that to originate on the device itself or pass through it. If I reset your password, that email shouldn't be flowing through my device or my network. – bryan May 05 '16 at 11:09
1 Answers
2
I use a backend like Backendless that allow you to manage your users login, password recovery, register, etc..
Good API, easy to use and a great and growing community who can help you any time.

Ika8
- 391
- 1
- 12
-
At this time I am using Parse for login, signup and forget password. – nabia saroosh May 05 '16 at 11:21
-
If you are using Parse, just add a Button in your UI. When you touch this button (on the OnClickActionListener) add the Parse forget password method.. – Ika8 May 07 '16 at 10:54
-
yes, I have add a button and you just tell me about "Parse forget password method". – nabia saroosh May 07 '16 at 11:27