Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My question is how to set multiple SMTP server for sending mails in android like : yahoo,hotmail,gmail,rediff any type of domain will worked while sending mail.Can anyone suggest any site or any idea ?

Please Help me,Thank you in advance.

share|improve this question
Maybe this could help you: stackoverflow.com/questions/2020088/… .... I assume you will have to make your own class to manage those smtp's. – Martin Nuc Oct 21 '11 at 11:20
i have used same it is working for gmail only,bt not applicable for rest of the domains like yahoo,rediff etc...i have also changed the host as smtp.mail.yahoo.com instead of smtp.mail.gmail.com bt its not working gives Authorization failed erro.... – Richa Oct 21 '11 at 11:33
SMTP server = smtp.mail.yahoo.com, Security type = None, Server port = 587 Please try this for yahoo. – Amy88 Nov 21 '11 at 6:34

1 Answer

Here are tested settings for GMail, Yahoo! and Hotmail. Tested using Javax Mail port for Android.

smtp_host="smtp.gmail.com";
port=465;
tlsEnabled = true;
requiresAuth = false;

smtp_host="smtp.mail.yahoo.com";
port=465;
tlsEnabled = true; // false is OK as well
requiresAuth = true;  // false is OK as well
// login can have yahoo.com suffix OR not

smtp_host="smtp.live.com";
port=587;
tlsEnabled = false;
requiresAuth = true;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.