I have to store the user details entered in a signUp form in mysql database. When the registration completes then i have to send a link to registered email for account activation. SignUp form developed in Android. how to send an activation link to mail. please help me anybody. I am using mysql as a database and android app.
Asked
Active
Viewed 1,503 times
1 Answers
1
I did not realise you could have MySQL on Android.
There is a JavaMail API you can use to send emails from an Android device.
You can find documentation and examples here: http://www.javapractices.com/topic/TopicAction.do?Id=144
You might need to tweak it a bit
After looking around a bit, I found this question has already been answered here : Sending Email in Android using JavaMail API without using the default/built-in app
-
Thanks for your response sir.. I am using mysql as backend in android.. I need send a link for account activation.. can u please tell me how can I send activation link to entered email? – Mallikarjun Hampannavar Jan 17 '13 at 19:42
-
JavaMail API is very usefull to me – Mallikarjun Hampannavar Feb 19 '13 at 18:28