Android email app (how to)

Dear StackOverflowers, first of all, I'm not entirely sure if this is a true question for the stackoverflow community, so please try to send me to my true destination before voting starts.

I want to develop a domain name based email application. For example, if mail containing some words like "bla bla bla" received from a domain like xyz.com, I will try to hit the alarm. I also want to activate the voice alarm, even hard, that the phone is in silent (or vibration) mode. Now my questions are:

1. Is it possible to catch (get) mail delegation methods to activate some other functions

2. Will Android activate a beep in silent mode?

Additional note: my mail server will be Microsoft Exchange ..

+3


source to share


1 answer


Is it possible to catch (get) mail delegation methods to activate some other functionality

Yes, to some extent. You can connect your users to the mail app with their email accounts and receive emails as they arrive. AFAIK, you cannot access incoming email unless your own application is receiving. So when you are able to receive emails, if a user logs in with your application, you will not be able to read them in the Gmail application.



Will Android activate beep in silent mode?

Your app can set the volume to high if it is silent, plays a notification sound, and then mutes again. It's pretty easy to do this.

+1


source







All Articles