I am curious about sending emails from an Android device directly. I tried to do so using sendgrid, but I got a conflict in the HTTP library. I also tried to achieve that using Intent, but with Action SEND.TO I can't detect if user actually sent the email or not (always returns false). Can anyone give me some advice?
Thanks in advance.
One of the solutions is to send emails with MailGun. Mailgun is an email service provider for developers. It gives transactional email API Service, so you don't need to worry about creating your own SMTP server. Mailgun gives us a RESTful API to perform email operations. I would recommend this article for further study and implementation. https://www.simplifiedcoding.net/mailgun-android-example/