简体   繁体   中英

How to send email using user's email ID from within the app (Without Intent)

Not a duplicate

I want to sent email without using any default email app so I searched a little bit and I stumbled upon this solution using JavaMail API -

Sending Email in Android using JavaMail API without using the default/built-in app

But I have few issues with this solution -

I don't want to use static username and password. Instead of that I want to use user's email ID. But it'll not be a good design if I directly ask user to enter his or her password.

So, how can I achieve this in a better way. Sorry, if this sounds too broad. Just looking for ideas not actual code.

Please, take a look at the Gmail API Android Quickstart guide . You'll be able to get the account credentials from Google Play Services and authenticate your user with OAuth2 by prompting an account selection

Instead of that I want to use user's email ID

As Gabe indicated, there is no "user's email ID" in Android. Beyond that, an "email ID" is insufficient for sending an email. You would have to ask the user both for all their email account information (username, password, SMTP server, etc.). Unless you are writing a full email client, hopefully nobody will give you this information.

how can I achieve this in a better way

Use ACTION_SEND or ACTION_SENDTO .

Or, send the email from your Web server, where your app tells the Web server what message to send via a Web service API that you implement and adequately secure. Then, you can use your own email account credentials without having to bake them into the app.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM