Tagged Questions
The javax.mail tag has no wiki summary.
4
votes
1answer
271 views
Documentation of Java Mail API configuration for JNDI in Tomcat
I spend several days to figure out how to configure an javax.mail.Session in Tomcat via JNDI with authentication, now I get it but only after a deep dive in the code.
In this time I have seen the ...
4
votes
6answers
2k views
Can I add classes to sun's rt.jar file?
I downloaded the Javax.mail package. I have jdk1.6.0_11.
Problem is...I cannot get javac or java to find those classes!
I can get apps to compile using JCreator LE ( by adding the mail jar
to its ...
3
votes
1answer
75 views
What should the mail.debug=true option of javax.mail do?
In the configuration properties of my javax.mail.Session I have set mail.debug=true, but for some reason, this doesn't add any new output to the application log.
I've set the log4f logging level to ...
3
votes
1answer
2k views
javax.mail.AuthenticationFailedException: failed to connect, no password specified?
This program attempts to send e-mail . But it has been unsuccessful till now . I can't get why i am getting the mentioned exception when i have supplied the password for authentication.
Both the ...
3
votes
1answer
438 views
Sending email with attachment through GMailSender?
I have been reading the blogs and have tried numerous implementations but have still failed to get an image attached to an email that I'm sending through GMail using java. I downloaded all the jars ...
3
votes
2answers
219 views
Link to individual mails in gmail
I want to download all emails in a gmail account and also want to get the unique url which will open the exact mail in gmail, off course with authentication. I tried using javax.mail imap library but ...
2
votes
0answers
239 views
Gmail IMAP, Searching for optimal method for X most recently active Gmail threads
I am looking for the optimal way to acquire a list of the top X most recently active Gmail threads.
Background:
I am using Java accessing IMAP with OAuth in a Google Apps for Education domain. A ...
2
votes
1answer
90 views
How I can get Google Talk History?
I want to get all mails from all folders from google.
I try do this with javax.mail.
I retrieve folders list by such code:
imapSslStore.getDefaultFolder().list("*");
But there are not folder with ...
2
votes
1answer
612 views
IMAP - javax.mail. - Fetching Only Body Without Attachment
I am trying to develop an IMAP email client using the javax.mail API. I have been able to contact the servers, fetch emails, attachments and other operations without any problem.
However, we would ...
2
votes
1answer
876 views
Setting the from name in a javax.mail.MimeMessage?
Currently, our application uses a javax.mail to send email, using javax.mail.MailMessage. We set the From headers of the email this way:
Message msg = new MimeMessage(mailSession);
msg.setFrom(new ...
1
vote
1answer
189 views
sending and receiving emails from gmail with sdk android
I see Sending Email in Android using JavaMail API without using the default android app(Builtin Email application), but doesn't work for me, giveme a exception, and if i make try..catch doesnt catch ...
1
vote
2answers
196 views
Can't get emails in Drafts, Spam and Trash folders from google using javax.mail
I want to get emails from all folders from gmail.
From inbox, sent and other folders I receive emails successfully.
But when I try to get it from Drafts, Spam and Trash I get an exception:
...
1
vote
1answer
161 views
Javax mail with Lift framework
I'm having a strange issue.
I deploy my webapp to the server (jetty 7.4.3.v20110701), and everything (including mailer) seem to be working fine. Debugging info (got with ...
1
vote
0answers
43 views
getSession v/s getDefaultSession and
1.) What is the difference between getSession() and getDefaultSession() ?
I have read the Doc but i am not clear what is meant by gets the default session object .
2.) In the method public static ...
1
vote
1answer
73 views
How to override jetty's javax.mail version?
In my pom.xml I have this excerpt to override lift's default mailer:
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
...
1
vote
4answers
1k views
java.lang.NoClassDefFoundError in command line
I'm developing an application in Eclipse and it runs fine from within Eclipse. The problem I'm having is that when I export it to a jar file and run it from the command line I get a NoClassDefFound ...
1
vote
1answer
350 views
How to mark messages that are received by an java application using javax Mail Api?
I want to create an application that gets all e-mails from an e-mail account using imap.
When I first run the application I get all mails, than if I run it again I want to mark the messages that was ...
1
vote
1answer
292 views
Tomcat 6 thread safe email queue (javax.mail.*)
Hi I have design/architecture question. I would like to send emails from one of my jsp pages. I have one particular issue that has been a little bit of a problem. there is an instance where one of ...
1
vote
3answers
9k views
Exchange server will not accept username/password provided with javax.mail API
I have a lovely little Java client that sends signed email messages. We have an Exchange server that requires username/password authentication to send a message.
When I connect to the exchange ...
1
vote
2answers
701 views
Recommended way to send email from a web app?
I have a web app on JBoss 4.2.3 and I'd like it to send email. I could do something like:
try {
Properties props = System.getProperties();
props.put("mail.transport.protocol", "smtp" );
...
0
votes
1answer
34 views
impossible to send email in application deployed on Glassfish
I've spent literally two days with this, googled it everywhere and still couldnt solve it, let's see if someone finds what I'm doing wrong:
I've defined a javaMail Session in Glassfish, with all the ...
0
votes
1answer
69 views
Send email with attachment from android app using GMailSender fails at Transport.send
I am trying to send an email with an image as attachment from my android app. I have followed this post (among many others): Sending email with attachment through GMailSender?
So I've done the same ...
0
votes
1answer
33 views
Email attachments not included within Glassfish
I have a MailMessage class I've written to manage sending email from my application. It works fine for plain text messages, and the attachment logic works when I compile and run it manually on the ...
0
votes
1answer
69 views
mail not sending using javaxmail
I am getting error while try to connect for sending mail for gmail..pls help
import javax.mail.*;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import ...
0
votes
0answers
55 views
EmailAddress Validation in Java
I was researching best possible way to check if a String was a valid email Address. I am now fixated on two options, viz., using javax.mail.internet.InternetAddress; or using Apache Commons ...
0
votes
0answers
41 views
javax.mail From address specified is not used for sending the mail
I'm trying to send email from my Java code. I'm using the javax.mail library.
This is my code:
public class SendMail {
public void postMail(final String recipients, final String subject, final ...
0
votes
1answer
77 views
error handling on SMTP sending using javax.mail
I writing a mail client for sending of email notification using Javax.mail SMTP. I need to validate the mail delivery. my first step ofcourse was to catch built in exception.
My question does those ...
0
votes
3answers
594 views
package javax.mail does not exist + package javax.mail.internet does not exist
when i compile a simple code that has the following 2 header files :
import javax.mail.*
import javax.mail.internet.*
i get the following message:
package javax.mail does not exist
package ...
0
votes
0answers
189 views
Error during sending messages using multipart
Hello friend's i am working on a standalone application i want to use multipart to send messages my codes are like this....
import java.util.Properties;
/*import javax.mail.Message;
import ...
0
votes
0answers
108 views
IllegalStateException on hot-deploying a war , which uses the javax.mail.internet package ,in tomcat 6.0
I have used the javax.mail packages to keep sending some kind of alerts to my users.
This functionality is exposed in a webapp hosted on tomcat 6.0.
The issue is, the first time the war deploys, ...
0
votes
0answers
265 views
Get the old and new gmail messages too via pop3 with javax.mail
I have to read and dump to database all input message of a gmail account. My problem is that the javax.mail get only the new messages. When I try to get the messages second time the ...
0
votes
2answers
2k views
Getting javax.mail.MessagingException and java.net.SocketException
I am trying to send a email using SMTP of my yahoo(smtp.mail.yahoo.com) account to my gmail account.
But am getting following exception.
javax.mail.MessagingException: Exception reading response;
...
0
votes
1answer
2k views
Javax.mail.* Package does not exist - Why?
Im using a class called emailer to send an email from a java application,
I am using netbeans 6.9.1 and I am using J2SE, I downloaded the javamail api and added the jar to the classpath and also put ...
0
votes
1answer
157 views
how can I read a email with clj-mail
mail to send/read emails but some have the next form:
#:clj-mail.core.Email{:subject "xxxxx", :content #<MimeMultipart javax.mail.internet.MimeMultipart@3d01e178>, :sent #<Date Tue Apr 05 ...
0
votes
2answers
458 views
Tomcat 6 Javax.mail session envCtx.lookup(“mail/Session”) not returning
I am using Tomcat 6 to send a email client with Javax.mail APIs , i set up my configurations in server.xml as below
<Resource name="mail/Session" auth="Container"
...
0
votes
1answer
497 views
Tables using JavaMail
I am sending an e-mail using JavaMail and I want to put my message data into a table that will be embedded in the e-mail. The person receiving the message will see the table with the filled in data. ...
0
votes
1answer
67 views
Error sending mail
I've got the following...
Properties prop = new Properties();
prop.put(host, "localhost");
prop.put(host, "25");
When I run the following it throws me back the following error...
...
0
votes
2answers
461 views
Create a javax.mail message of mimetype: application/EDIFACT
I Am working on an application that can send EDIFACT messages by mail.
The sending and receiving mail is no problem, receiving an EDIFACT message (send by another application) works as well.
EDIFACT ...
0
votes
2answers
111 views
Character corruption for Chinese (simple and traditional) and Korean texts
I have a setup, where emails received by mail server(postfix) are taken on and the resulting email's body(html or plain text) and attachments are parsed to separate files and saved, for this i use ...
0
votes
1answer
94 views
How to add a message as an attachment on another message with javax.mail
I've got a mailer daemon that check a box and fetch the mails inside every X mins.
When an error occurs, I need to send a alert mail, with the faulty message as an attachment.
I dont want to create a ...
0
votes
2answers
260 views
Loading .eml files into javax.mail.Messages
I'm trying to unit test a method which processes javax.mail.Message instances.
I am writing a converter to change emails which arrive in different formats and are then converted into a consistent ...
0
votes
3answers
122 views
Javax.mail in JNLP
I have a problem with my program. I develop in Netbeans, and when i run the program it is working fine. i built it, created a *.jar file, and updatet it in my JNLP file.
here comes the trouble. as ...