Skip to content Skip to sidebar Skip to footer

Configuring A 3rd Party Email Account In Android Programmatically

Is it possible to configure a 3rd party email account in Android programmatically. Is there any API for this? Basically I am trying to create an app that would: ask the user for

Solution 1:

If it's a popular provider such as gmail, hotmail, aol etc then you will be able to do this but individual mail servers such as company emails etc have their own configurations and such which can be difficult to gauge programmatically.

As for how to implement a mail client, you can check out the source code for K9 mail. It is an excellent open source, full functional email client for android. It supports POP3, IMAP and Exchange accounts. You'll find everything you need to learn about making an android email app if you study its source. It's hosted on Github here:

https://github.com/k9mail/k-9

Here's the free app on the google play store:

https://play.google.com/store/apps/details?id=com.fsck.k9&hl=en

Post a Comment for "Configuring A 3rd Party Email Account In Android Programmatically"