How to send emails from my Android application?

前端 未结 21 2669
春和景丽
春和景丽 2020-11-22 00:38

I am developing an application in Android. I don\'t know how to send an email from the application?

21条回答
  •  轮回少年
    2020-11-22 01:02

    Sending email can be done with Intents which will require no configuration. But then it will require user interaction and the layout will be a bit restricted.

    Build and sending a more complex email without user interaction entails building your own client. The first thing is that the Sun Java API for email are unavailable. I have had success leveraging the Apache Mime4j library to build email. All based on the docs at nilvec.

提交回复
热议问题