background preloader

Email, Pop3, IMAP

Facebook Twitter

MimeBodypart - GrepCode.com - Java Source Code Search 2.0. JavaMail API - FAQ. General Installation and Configuration Programming Debugging Reading mail, IMAP Sending mail, SMTP JavaMail in servlets JavaMail in applets Q: What is the JavaMail API?

JavaMail API - FAQ

Q: How do I get an implementation of the JavaMail API? Q: How do I send feedback or comments? Q: Where is javax.activation? Q: What JDK does the JavaMail API need? Q: Where can I find a version of JavaMail for my favorite operating system? Q: Do the JavaMail APIs work in web browsers? Q: Can I use JavaMail to read mail from my web mail account (such as Yahoo or Hotmail)? Q: What is IMAP? Q: What is SMTP? Q: What is MIME? Q: What is POP3? Q: What about support for MAPI, NNTP, Lotus Notes, and other service providers? Q: How do I store mail messages on my local disk? Q: Where do I find documentation on the protocol providers? Q: Is the JavaMail API implementation completely free? Q: Can I get the source code for the JavaMail API implementation?

Q: Is JavaMail Y2K compliant? Q: The answer to my question isn't here, where else should I look? JavaMail API - FAQ. General Installation and Configuration Programming Debugging Reading mail, IMAP Sending mail, SMTP JavaMail in servlets JavaMail in applets Q: What is the JavaMail API?

JavaMail API - FAQ

Q: How do I get an implementation of the JavaMail API? Q: How do I send feedback or comments? Q: Where is javax.activation? Q: What JDK does the JavaMail API need? Q: Where can I find a version of JavaMail for my favorite operating system? Q: Do the JavaMail APIs work in web browsers? Q: Can I use JavaMail to read mail from my web mail account (such as Yahoo or Hotmail)? Q: What is IMAP? Q: What is SMTP? Q: What is MIME? Q: What is POP3? Q: What about support for MAPI, NNTP, Lotus Notes, and other service providers?

Q: How do I store mail messages on my local disk? Q: Where do I find documentation on the protocol providers? Q: Is the JavaMail API implementation completely free? Q: Can I get the source code for the JavaMail API implementation? Q: Is JavaMail Y2K compliant? Q: The answer to my question isn't here, where else should I look? Android – Send email via GMail (actually via SMTP) « Show me the code! – By Davanum Srinivas. DisplayingGmailThreadBasedView - java-gmail-imap - Example code showing how to display a Gmail inbox in thread format. - Extending JavaMail 1.4.4 to support the Gmail IMAP Extensions. Overview (Apache JAMES Mime4j Project 0.8-SNAPSHOT API) Base64 Decode and Encode - Online.

jGuru: Fundamentals of the JavaMail API. Sending Emails without User Intervention (no Intents) in Android. The Android SDK makes it very easy to send emails from an application, but unfortunately, that's only if you want to send them via the built-in mailing app.

Sending Emails without User Intervention (no Intents) in Android

For most situations this works fine, but if you want to send something out and don't want any input/intervention from the user, it's not as easy. In this article I'm going to show you how to send an email in the background without the user even knowing - the application will do everything behind the scenes. Before we begin, you'll need to download a few files via the link below - this is a special version of the JavaMail API, which was written specifically for Android. I'll be walking you through a Mail wrapper that I wrote, which makes it much easier to send emails and even add attachments if that's something you'd like to do. Here is the full wrapper class below, which I'll go through step by step - keeping in mind that you'll have to add the fore-said files if you want this to work. And now I'm going to go through each bit of code.