I had recently asked a question regarding the following code:
Sending Email in Android using JavaMail API without using the default/built-in app
I had asked this in regards to a network error, as per a previous question:
Need Help Debugging Email Code
My question is, how would I implement an AsyncTask in order to successfully send an email with this Android code? Every tutorial that I see informs me that I should do
extend AsyncTask {
However, GMailSender.java already has this defined as:
public class GMailSender extends javax.mail.Authenticator
Would anyone be able to help me? Thanks!
NOTE:
Please don't be like the idiot who had -1ed this question and posted the exact answer as was given in Sending Email in Android using JavaMail API without using the default/built-in app. I am unable to use that exact coding, due to the fact that it is no longer possible to run a network operation on the main thread of an Android application. I am looking for a way to use AsyncTask in order to run the operation in the background. What I am unable to find out is how to do
extend AsyncTask {
without touching
public class GMailSender extends javax.mail.Authenticator
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…