Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
5k views

Sending email in Java using Apache Commons email libs

I am using Apache Commons Email library to send emails, but I am not able to send them via GMail SMTP server. Can anyone provide sample code which works with GMail SMTP server and others? I am using ...
3
votes
3answers
2k views

How to attach a file to an HTML email using apache commons email

I'm using Apache Commons Email 1.1 and I can't figure out how to attach a file to an HtmlEmail. If I run the code below, I get an email with an attachment, but the html message comes across as an ...
2
votes
2answers
60 views

Apache Commons Email install in Eclipse: cannot be resolved

I'm sorry, I do not have enough reputation to comment on others posts, so I have to ask a new Question. I'm on ubuntu Linux 11.10, and I'm trying to install the Commons Email in eclipse. But the ...
1
vote
2answers
393 views

Java:Apache commons mail goes immediately to hotmail junk folder

Hello all Is there a way to make my email pass through these hotmail filters? In gmail the mails arrive in the inbox folder
1
vote
1answer
584 views

Using apache commons email library getting error must issue a starttls command first. Please help

Email email = new SimpleEmail(); String authuser = "......@gmail.com"; String authpwd = "*******"; // Very Important, Don't use email.setAuthentication() email.setSmtpPort(587); ...
1
vote
1answer
462 views

Attachments+Html generated with commons-email doesn't show in some email clients

I've been using the org.apache.commons.mail.HtmlEmail class, from apache commons-mail, for some time. Eventually, some users complain that the email shows with no attachemnts on their e-mail client ...
1
vote
4answers
3k views

Sending an Email Using Commons-Email to Gmail

Email email = new SimpleEmail(); String authuser = "......@gmail.com"; String authpwd = "*******"; // Very Important, Don't use email.setAuthentication() email.setSmtpPort(465); ...
0
votes
1answer
23 views

encoding between Axis2 and Apache Commons Email

I've got the following webservice method, which is called by REST: public boolean sendMail(String text) { Email email = new SimpleEmail(); email.setHostName(MAIL_SERVER); ...
0
votes
1answer
135 views

Commons Email did not connect to correct host

I tried to connect to a remote mail server but somehow commons email/JavaMail always attempt to connect to localhost. Why??? Email email = new SimpleEmail(); ...
0
votes
1answer
89 views

add attachment as stream in commons email

I am using Apache Commons Email in my web-application and it works fine. Now that I need to send a document by attachment, I am facing some problems. I need to get the file from the database (as a ...
0
votes
2answers
958 views

How to send multiple emails in one session?

I want to send thousands of different emails to different recipients and would like to open the connection to my SMTP and hold it. I hope this is faster then reopen the connection for ervy mail. I ...
0
votes
2answers
352 views

html email with attachment

I'm attempting to include a zip attachment with some html content in an email using apache-commons-email 1.1. If i use this code, which sends an email without an attachment, the html body displays ...
0
votes
1answer
692 views

Java mail attachment not working on Tomcat

I have an application which e-mails confirmations. The email part utilises Commons Mail API. The simple code which does the send mail is as shown below; import org.apache.commons.mail.*; ... // ...
-5
votes
2answers
340 views

Can not send email through gmail with Apache Commons Email.

Can not send email through gmail with Apache Commons Email.What is the problem? Email email = new SimpleEmail(); email.setHostName("smtp.gmail.com"); email.setSmtpPort(587); ...