A Java API to send and receive emails. JavaMail is part of Java EE, but can also be used in Java SE via a separate download.
0
votes
0answers
4 views
javax.mail.MessagingException: Could not connect to SMTP host with windows server 2008R2
i got following error with java mail on windows server 2008 R2 and 25 port is enable on my firewalls inboundrule
DEBUG SMTP: trying to connect to host "XXX.XXX.XXX", port 25, isSSL false
...
0
votes
0answers
8 views
eps attachment parsing with javamail
Is any special handling required to parse the eps attachment in the eml using javamail
I dont have any issue other types of attachments. only eps attachment gives problem
When i send the eps ...
0
votes
4answers
42 views
how to send mail directly in android?
In my requirement i need to send a mail directly when user click on the send button without using intents.I have done it with java mail API.But it ask password.Can i send without giving my password?. ...
0
votes
1answer
10 views
Differences between Folder.fetch and getmessages
I'm trying to write an app that get emails from a POP3 server. The "Strategy" I used eventually is:
Get single message
check if the message is already present in my database
if not, insert it, goto ...
0
votes
0answers
18 views
how to get delivery status after sending mail and without open inbox using javamail
I have started implementing a mailing module using the JAVA mail API. Now i want to get delivery status i.e mail is successfully delivered to the recipients or not.If any one have these related code ...
0
votes
2answers
22 views
Send Email without user's Authenication
That is what I want
I want to develop a feedback form. So I create a sample activity for sending email from on mail address to another. But I want that mail sends without authentication. or if it is ...
0
votes
1answer
13 views
javax.mail.internet.ParseException: Expected “/”, got files
I am getting an error while trying to send an email with file attachment :
javax.mail.internet.ParseException: Expected '/', got files
at ...
-1
votes
1answer
25 views
Android Javamail Error
I've made an E- Mail - Client for my Android Phone using JavaMail. It was running until last week, now, I get an Error when I save the Password and the username on the Phone and try to load all E- ...
0
votes
0answers
8 views
icalendar two and more events together via JavaMail
I tried to put two events together in one ICS. To do this I helped an example put on this forum:
(...)
BEGIN:VCALENDAR
PRODID:-//bobbin v0.1//NONSGML iCal Writer//EN
VERSION:2.0
CALSCALE:GREGORIAN
...
0
votes
0answers
26 views
error occuring while sending an email using smtp and outh token in android
While sending an email in android using JavaMail API and OAUTH2 token the below error is occurring.
334eyJzdGF0dXMiOiI0MDAiLCJzY2hlbWVzIjoiQmVhcmVyIiwic2NvcGUiOiJodHRwczovL21haWwuZ29vZ2xlLmNvbS8ifQ==
...
0
votes
1answer
33 views
Read the first line of the email message and forward with attachment - java.mail
I have a requirement where I need to process the first line in the email message and, possibly, forward it.
But the problem happens when this message has attachments. And I need to forward them as ...
1
vote
1answer
17 views
Spring JavaMailSenderImpl is not working with SSL [closed]
Simple Java Mail client is working fine with an email server running on SSL. But the same server is not working when used from Spring JavaMailSenderImpl class. Also thunderbird works fine the mail ...
0
votes
1answer
14 views
Javamail logging to service with FROM value
I'm using Javamail in my mailing service. This is my code:
public static void send( final String username, final String password, String recipientEmail, String ccEmail, String title, String ...
0
votes
1answer
12 views
APNS and message queue
How can I set up a queue on a Java side Server to invoke the APNS only every 5 min. So that I do not overload my user with constant mail Push Notifications, but rather update the App only every 5 min. ...
1
vote
1answer
14 views
Return path doesn't get set using mail.smtp.from
I am having problems setting the return path for all yahoo emails I'm sending. Here's what I'm using:
Properties props = new Properties();
props.put("mail.transport.protocol", "smtps");
...
1
vote
1answer
7 views
Best approach for adding IMAP Folder listeners from JavaMail API
Hi I have an IMAP client implemented by javamail API. In javamail, for each open folder, it opens a http connection to the IMAPserver (In my case Gmail). My problem is, when I add mailCountListener ...
1
vote
1answer
23 views
java.mail mark message as unread
I am building an automatic mail processor application and I am parsing the emails one by one. If parsing one of the messages fails I would like to mark that message as unread?
How do I mark a message ...
0
votes
1answer
30 views
Javamail reply removing or modifying message-id header
I want to modify or remove the "Message-ID" header when replying to an email with Javamail. After some research I found out I need to create a custom class that extends MimeMessage. Here is the class ...
-2
votes
0answers
24 views
Java common.net java mail [closed]
I downloaded two package one commons.net and Java mail i was wondering if there is a book on these or a site when i can learn the functionality that these packages contain
1
vote
1answer
48 views
Could Not convert socket to TLS
I am trying to send email using java servlets in eclipse IDE.
This is my Code.
final String username = "******@gmail.com";
final String password = "******";
Properties props = new ...
1
vote
1answer
34 views
Send email programmatily from recent Android
I've read the question linked here. I've tried this method to send email programmatily when, for example, user press a button.
It does works on 2.3.7 version of Android.
The issue is when trying to ...
0
votes
2answers
19 views
How do I ensure that the SEEN flag on an IMAP email message is not automatically marked as SEEN on doing getContent
I am dealing with a bad connection to an external IMAP server. I need my application to download messages from this mail server periodically. On many occasions, my code has already downloaded ...
0
votes
1answer
49 views
Java Mail Exception in Android
I am facing a strange problem. I am connecting the gmail server through IMAP. It is connecting fine at the first attempt fine. But when I connecting the store for the second time, I am getting ...
0
votes
1answer
24 views
not getting mails when filter out with ReceivedDateTerm java mail
here just to set today date.
Calendar cal = null;
cal = Calendar.getInstance();
cal.set(Calendar.HOUR_OF_DAY, 0);
cal.set(Calendar.MINUTE, 0);
...
0
votes
1answer
8 views
How do I download the screenshots attached in the mail body
My program picks up mail from a PoP3 enabled email exchange server.
This mails have screen shots as part of the body.
I want to save the screenshots in the mail on the local drive.
I am using JavaMail ...
-1
votes
1answer
33 views
getting body text from email containing attachment
I'm using imap with Java mail to retrieve emails. I'm having some problems when the email has attachments.
Here is the related code to receive the content of the email.
//get content
Multipart ...
-3
votes
1answer
25 views
Read content and attachments from inputstream [closed]
How to read content and attachments from InputStream javamail?
Example of code , Voila, here it is:
Multipart parts = (Multipart) message.getContent(), innerPart;
int i;
for (i = 0; i < ...
0
votes
1answer
37 views
send and receive mail from localhost to localhost in jsp
Hey everyone,
I've tried to much. also in googling but not succeed what i've to make is one mail system in which user can register in that with a new email id. and after that there should ...
0
votes
0answers
34 views
Javmail getting Multipart message Content
I'm working on an email client for my Android Phone, and I want to get the Content of a message wich is in Multipart format.
The text/plain content I get on the following way:
public String ...
-1
votes
1answer
20 views
Javamail message content newline
I've made an E-Mail Client for my Android Phone using the JavaMail API, and I try to get the message Content with the following Code:
Object contentObject = p.getContent();
InputStream is = ...
0
votes
3answers
53 views
javax.mail.MessagingException while sending mail using JavaMail API
I am trying to send as email using JavaMail API, through my gmail account, but I am getting a javax.mail.MessagingException exception
The Code :
public static Result sendMail() {
Map < ...
1
vote
2answers
28 views
Javamail ISO-8859-1 formating
I made an E- Mail Client for my Android phone with the Javamail Api. If I try to get the sender's mail adress and the recipients mail adress with the following methods:
Address[] froma = m.getFrom();
...
-1
votes
0answers
11 views
How to read from IMAPInputStream and Base64Decoder? [closed]
How to read from IMAPInputStream and Base64Decoder JAVAMAIL?
Trying, but can't find an working example.
-4
votes
1answer
40 views
How to read content(string/multipart) of imap message?[Javamail] [closed]
How to read body of imap message? Can't find a working example.
How to read IMAPInputStream and Base64Decoder?
0
votes
1answer
16 views
Could some one please let me know why could we get the following exception
javax.mail.MessagingException: Could not convert socket to TLS;
nested exception is:
javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building ...
0
votes
1answer
42 views
how to create dynamic links between two cells of 2 html tables in html email using java
One of our customers has got a requirement to create a html based email with html table for each automation script as part of test automation framework.
The Second requirement is to have one more ...
-2
votes
1answer
22 views
attaching excel as an attachement in the process of mailing [closed]
I have been using poi to generate the excel and the excel sheet is generated in my C: drive
itself , and I am also using one of the mail api that is java mail api (mail-1.4.1 jar)
Now I have to send ...
0
votes
1answer
35 views
Ssl exception occurs when sending email
I am trying to send email through my java application. I am trying to send the email from the email account provided by the hosting service provider(cyberhost.in). Whenever I run the application I get ...
0
votes
0answers
55 views
How do you send mail in Android using JavaMail API?
How do you send mail from Android? The same code is working fine in a Java project but not in Android.
1) GmailSender.java
import javax.activation.DataHandler;
import ...
0
votes
1answer
47 views
Mail Sending fails with SMTP fails to connect
I am trying to send a mail using the below program but I am getting the following error message.
public class SMTPTest {
//private Logger log = Logger.getLogger(this.getClass());
...
0
votes
4answers
82 views
Error while sending mails using smtp
I need to send mail from my gmail account to another. I used the following code.
String fromaddress = "xxx@gmail.com";
String password = "yyy";
String hostname = ...
0
votes
1answer
50 views
Mail not sending using javaMail
In my application I am sending mail using spring. it works fine when I am sending mail from any gmail id, but when I am sending from another smtp server then mail is not sending.
My spring ...
1
vote
1answer
48 views
Java Mail authentication and connection
While I am trying to connect through java mail
the server is responding unexpected
the problem is that sometimes the same program connects and get the mails but some times it throws
...
0
votes
1answer
51 views
Java Mail Listening For Messages POP3
I am trying to listen for new messages using the POP3 protocol. I am aware that Pop3 doesn't allow new messages to appear in the Inbox while the folder is open. Below is the code that I have ...
1
vote
0answers
54 views
Java Mail Authentication
Trying to connect mail using java
Exception in thread "main" javax.mail.AuthenticationFailedException: No POP server defined. Use real server address instead of 127.0.0.1 in your account.
at ...
0
votes
1answer
66 views
error throwing while trying to send email using java class
hi i have a class sendemail which is having a method sendmail.i have another jsp page activation and in activation jsp page i am calling the sendmail method to send the email to a particula person. ...
0
votes
0answers
79 views
JavaMail read Outlook email Body
I am trying to read the email body using JavaMail,
1) The software reads the first email which is in html format
2) the software doesn't read second email which is sent from outlook
sample code
...
0
votes
1answer
55 views
JavaMail - Task ends without errors but no mail is sent
recently i've been working on an automatic daily mail sender plus a weekly mail inside two different threads on my project.
The mail server is a MS Exchange (don't remember the version)
When the ...
0
votes
1answer
11 views
How to find whether a mail is a draft or not?
How to check whether a mail is a draft or not from JavaMail API? I know that there is a Flag : DRAFT. But I connected to my gmail account and retrieved my Dfaft mails and checked whether DRAFT flag is ...
2
votes
2answers
31 views
InternetAddress only the email address without name?
I'm working on a IMAP application with Java, and I want to retrieve only the email address without the name. Here is the relevant code I'm using.
Message[] msg = folder.getMessages();
for (int i = 0; ...

