Tag archives for Email
How to send an Email in Android ?
Last week, I shown you how to send an Email in Android thanks to JavaMail API by using GMail SMTP. This week, you're going to learn how to send an Email in Android by using Intent and so applications installed on the Android OS. Code snippet is very simple compared to solution using JavaMail API : String to = "To";…
How to send an email with JavaMail API in Android ?
As an Android developer, you're used to send email thanks to Android standard API provided in standard SDK. To achieve that, you use and call startActivity method to delegate to OS the sending email process. Perhaps, you would like to manage the entire process in your application when you send an email in Android. If you want to make this,…