Package javax.mail is part of the JavaMail API and provides classes that model a mail system.

learn more… | top users | synonyms

0
votes
1answer
43 views

Any alternative to @GrabConfig?

I'm using the javax.mail library to send emails that may or may not contain attachments. I'm also using Groovy 2.0.6 for writing this script and am developing it in Eclipse and running unit tests ...
1
vote
2answers
29 views

Email Validation RFC 2821 using Java

I am working on email Validation using java having RFC 2821 in mind. I have used following code to validate all my email address: InternetAddress emailAddr = new InternetAddress(email); ...
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 ...
-1
votes
0answers
8 views

I'm trying to use javax to mail a nessage with e.getMessage in it. It works with string, but won't let me send the error message text

I don't get an error from the mail handler, ti just doesn't send the mail Are there some characters it won't accept? Thanks
0
votes
1answer
28 views

javax.mail not including Sender Name in emails

No matter what I try, I can't get the Sender Name to show up in the outgoing mails sent through the javax.mail Session class. Please note that I'm using Rhino so there's a mixture of javascript and ...
0
votes
1answer
31 views

Reading mails dynamically in Java

I have a thread which checks my inbox in a loop every 10 seconds. I create my mail session and store and connect to the store before the loop: store.connect() while (running) { ...
0
votes
1answer
120 views

Build.xml is failing to send email, gives “java.lang.ClassNotFoundException: javax.mail.internet.MimeMessage” error

Below is one of the targets that runs after the completion of tests, buil.xml(pass or fail). This target is failing and giving error "java.lang.ClassNotFoundException: ...
0
votes
1answer
54 views

MimeMessage body longer 76 chars

I'm able to create a .eml file with javax.mail library, but if the body is longer than 76 characters it's broken in more lines. The problem is than opening the .eml file with Windows Live Mail the '=' ...
5
votes
3answers
189 views

cannot append a message to a folder in javax.mail

I am managing to save simple messages containing body, subject etc. However, I am unable to save multipart messages. I logged before and after appendMessages, but noticed that the second log is ...
0
votes
0answers
24 views

Cannot instantiate of type multipart

Hi I am having the following code for mail sending utility functionality Multipart multipart = new MimeMultipart(); ((Multipart) multipart).addBodyPart(messageBody1); ...
0
votes
1answer
29 views

javax.mail from is not set

I'm trying to send email using JNDI, but for some strange reason the from field is not set. context.xml: <Resource name="email/user" description="support email" auth="Container" ...
0
votes
0answers
34 views

is the GNU javax.mail.Folder root folder for Store empty?

I'm using GNU NNTP and am running into a problem with loading the folders. Now, I do see my FQDN and NNTP server, Leafnode, in the stacktrace below, so that appears to be loading correctly. here ...
0
votes
1answer
79 views

implementing email service in my code

i have been trying to implement the following servlet code to implement email facility but i am constanly getting error with this code. pls have a look at it... import java.io.IOException; import ...
1
vote
1answer
133 views

how resolve Address Invalid exception

We tried to send mail using javax.mail. While sending mails we got following exception: **sendMail - Message Sending Failed: Invalid Addresses; nested exception is: ...
1
vote
1answer
132 views

Reading GMail with Java

I am attempting to write a Java class which will retrieve messages from GMail via POP3. So far, I have copied this code: ...
0
votes
1answer
143 views

cannot parse headers to create MIME message

I'm trying to send messages only to myself, not out to or through the intertubes, based on the Apache NNTP API. The particular class involved takes an NNTP message and attempts to parse it into a ...
0
votes
2answers
195 views

utf 8 charset doesn't work with javax mail

I have used Javax Mail API, for sending emails. I am using a contact formular to send the input, which has to be send to a specific email. The email is send without problems, though I am a danish ...
0
votes
1answer
617 views

why do I get java.net.ConnectException: Connection refused?

I'm able to send mails to myself (not sending over the intertubes), yet cannot seem to use Java to replicate as below. Postfix via telnet behaves fine: thufir@dur:~$ thufir@dur:~$ telnet localhost ...
0
votes
0answers
60 views

how to create an “offline” Java MimeMessage?

Java MimeMessage seems to require a Folder or Session for instantiation. Is there a sort of "offline" variety which allows creation of the message first, and then later it can be turned into a ...
0
votes
1answer
88 views

Download email attachments using JAVAX api

I have a client program (uses javax API) which will download attachments from an email. Unfortunately the same is not able to download from a specific sender. Here is the client code which will save ...
1
vote
1answer
75 views

how to read Sent Mails of gmail using javaxmail android

How can I get mails from Sent Mail folder of gmail? I can get mails from inbox using store = imapSession.getStore("imaps"); store.connect("imap.gmail.com", user, password); Folder folder = ...
3
votes
1answer
156 views

How to connect to POP3 server through SSL with a custom TrustManager?

I am writing a test for an e-mail sender class and I need to be able to check if the message arrived, by downloading it from the target POP3 server. The server is an Exchange server and connection is ...
1
vote
0answers
161 views

IMAP idle method hangs + javax.mail + groovy

I have configured courier IMAP server and tested the IDLE functionality it works fine when using telnet machinexxx:~$ telnet hostname 143 Trying x.x.x.x... Connected to hostname. Escape ...
0
votes
3answers
71 views

sending an email with java not receving email

@Override public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { PrintWriter out = null; String user = ...
0
votes
2answers
270 views

Send mail without Gmail using javax mail

I'm trying to send an email without Gmail and using javax.mail. In particular, I use two files: mailSender.java and the MainActivity. mailSender.java: package com.polito.gmail; import ...
-1
votes
4answers
135 views

Error in sending mail - ConnectException

I have used the following Java code to send email. import java.util.*; import javax.mail.*; import javax.mail.internet.*; import javax.activation.*; public class SendEmail { public static void ...
0
votes
3answers
2k views

Send Mail to multiple Recipients in java

I want to send message to multiple Recipients using following method :: message.addRecipient(Message.RecipientType.TO, String arg1); OR message.setRecipients(Message.RecipientType.TO,String arg1); ...
0
votes
2answers
203 views

Mail Server with javax.mail and CentOS

I have a Java Program that was installed on an old Ubuntu machine and sent mail using javax.mail. However, that machine went down and I am now running the same Java app in a new CentOS machine. ...
0
votes
0answers
123 views

Invalid content type “text/xml; charset=utf-8” for XmlDCH

MimeMessageHelper mmh = new MimeMessageHelper(); MimeMessage msg = mmh.buildMM7Message(send, Sid, message,fds); ByteArrayOutputStream baos = new ByteArrayOutputStream(); String skipheaders[] = { ...
1
vote
1answer
191 views

Compiling java with classpath doesn't find all jar files

I have a lib folder with many .jar files and one of the files I have is mail.jar (for javax.mail) When I compile my source code, I use javac -cp .:../lib/ server/MyFile.java And then I get a bunch ...
1
vote
2answers
661 views

How to Send bulk mails using javax.mail API efficiently? & Can we use reuse authenticated sessions to improve speed?

I am able to send a mail using javax.mail API. But the problem here is on an average for each mail it taking around 4.3 seconds to send to destination. If I am sending a 20 mails sequentially, it ...
0
votes
0answers
119 views

javax.mail.* problems at compile times in terminal (works in eclipse)

I am building a class to send mail from a gmail account using Javax.mail. I have downloaded the jar and added it to my file in eclipse. I don't want to really leave the password in plain text, as ...
2
votes
0answers
170 views

java.lang.ArrayIndexOutOfBoundsException at com.sun.mail.imap.MessageCache.getMessage(MessageCache.java:123)

I am reading emails from emailServer and saving them in database.I am using following code to read messages from folder("INBOX") on email server and retrieve messages corresponding to them but I am ...
0
votes
1answer
476 views

Exception to fix javax.mail.AuthenticationFailedException exception

I am learning how to send an email with javamail API, i have created the necessary properties and instructions to send a simple email using SMTP server, and i am using this code : Properties ...
0
votes
0answers
85 views

Embedding url into html email with java mail

How do I embed a url reference with Java mail There are multiple example to replace : with : with Java code to support this : MessagePart1.setHeader("Content-ID","myimage"); Can anyone help to ...
0
votes
0answers
110 views

javax.mail link missing Url parameters when clicked in Lotus Notes by a few clients

An internal corporate application I am writing generates and sends an email. In the content of the email I inline a link which has some url parameters. The app sends the email to applicable ...
1
vote
3answers
273 views

Fake javax.mail.Session

I have an application that send emails. But in my development environment, I don't want that the application send email, but only print the message in log file. There are a fake javax.mail.Session ...
2
votes
1answer
126 views

persist e-mail in a RDBMS

I'm considering using dbmail, Archiveopteryx, manitou or James to persist javax.mail.Message objects, not exactly e-mail per se. However, I'm guessing that, in the case of dbmail specifically, it's ...
0
votes
0answers
122 views

NNTP xref header for article message number?

I'm using GNU NNTP to connect to Leafnode on localhost, which uses javax.mail.Message. This creates a situation where the message numbers will not persist across sessions, or even re-opening a folder ...
0
votes
1answer
185 views

is there an alternate to javax.mail.search?

I'm using GNU NNTP to connect to leafnode, which is an NNTP server, on localhost. The GNU API utilizes javax.mail.Message, which comes with the following caveat: From the Message API: ..the ...
0
votes
1answer
47 views

how to set up localhost for smtp to send javax.emails?

Right now I am using gmail as the host, how do I make it so I can use my localhost? I've tried to put localhost as the host, but I always get "Connection refused on localhost port 25" or something ...
1
vote
1answer
245 views

set “start” attribute in content-type for mime multipart/related message in javax.mail api

How can I set start attribute in the content-type for mime multipart/related message? To be more precise, I want to know how I can set the start attribute for the root attachment in the below example ...
1
vote
1answer
163 views

how many objects in the JVM are too many? [closed]

I have an older PC with a Intel(R) Pentium(R) 4 CPU 2.53GHz and 2 GB of RAM. I'm iterating through javax.mail.Message instances and am wondering about upper limits on memory usage. Assuming ...
0
votes
0answers
102 views

No rendering in mail sending with javax.mail

I'm stuggling on sending a mail in my javax.mail app. What I get is a mail where the hmtl code inside is not rendered, even if I use setContent() function. public void emailTest(Utente utente, ...
0
votes
1answer
165 views

finally catch or return instance or null reference

Using GNU NNTP, how can I get getMessage(String newsgroup, int i) to return either with a bona-fide javax.mail.Message or a null such Message? init: Deleting: ...
0
votes
1answer
911 views

java mail api : exception thrown saying java.lang.SecurityException: Access to default session denied

when im trying to send a mail using java mail api in my web application , I'm getting this exception. java.lang.SecurityException: Access to default session denied the inputs are fron an html page. ...
0
votes
2answers
161 views

How to get simply email address after MimeUtility.decodeText()?

How can I simply get the email address after use MimeUtility.decodeText() from javax.mail.internet ? After that operation I have following String: Foo Bar <foo.bar@abc.en> I can do that ...
1
vote
1answer
2k views

How to correct Invalid Protocol: null sending mail using javax.mail

i'm trying to send mail in this way: Properties props = new Properties(); props.setProperty("mail.transport.protocol", "smtp"); props.setProperty("mail.host", "out.alice.it"); ...
0
votes
2answers
1k views

How to read text inside body of mail using javax.mail

i'm developing a client mail using javax.mail to read mail inside mail box: Properties properties = System.getProperties(); properties.setProperty("mail.store.protocol", "imap"); try { ...
0
votes
1answer
237 views

How to know if message is read or not

i'm understanding javax.mail to read an email account and get all received message. This is an example: Properties properties = System.getProperties(); ...

1 2 3