Re: [email] JavaMail works Commons Email does not

2012-01-12 Thread Siegfried Goeschl
apper for JavaMail. In my wrapper, I have "session.setDebug(log.isDebEnabled())". Thanks, Frank -Original Message- From: Siegfried Goeschl [mailto:sgoes...@gmx.at] Sent: Tuesday, January 10, 2012 11:38 AM To: Commons Users List Subject: Re: [email] JavaMail works Commons Emai

RE: [email] JavaMail works Commons Email does not

2012-01-11 Thread Frank Sullivan
Users List Subject: Re: [email] JavaMail works Commons Email does not Hi folks, it is also useful to call Mail.setDebug(true) which turns on the debugging of the mail session. Having said that some stepping though the code might provide some insight ... :-) Cheers, Siegfried Goeschl On 10.0

Re: [email] JavaMail works Commons Email does not

2012-01-10 Thread Siegfried Goeschl
al Message- From: Konstantin Kolinko [mailto:knst.koli...@gmail.com] Sent: Tuesday, January 10, 2012 5:37 AM To: Commons Users List Subject: Re: [email] JavaMail works Commons Email does not 2012/1/10 Frank Sullivan: I have a web application (Flex, Spring, Hibernate) that has a simple email m

Re: [email] JavaMail works Commons Email does not

2012-01-10 Thread Christian Grobmeier
Cheers > Thanks, Frank > > > -Original Message- > From: Konstantin Kolinko [mailto:knst.koli...@gmail.com] > Sent: Tuesday, January 10, 2012 5:37 AM > To: Commons Users List > Subject: Re: [email] JavaMail works Commons Email does not > > 2012/1/10 Frank Sulliv

RE: [email] JavaMail works Commons Email does not

2012-01-10 Thread Frank Sullivan
Re: [email] JavaMail works Commons Email does not 2012/1/10 Frank Sullivan : > I have a web application (Flex, Spring, Hibernate) that has a simple email > module that uses Common Email.  Currently it only sends plain text messages. > Here is basically what happens: > > HtmlEm

Re: [email] JavaMail works Commons Email does not

2012-01-10 Thread Konstantin Kolinko
2012/1/10 Frank Sullivan : > I have a web application (Flex, Spring, Hibernate) that has a simple email > module that uses Common Email.  Currently it only sends plain text messages. > Here is basically what happens: > > HtmlEmail email = new HtmlEmail(); > email.setHostName(smtpHost); > email.se

[email] JavaMail works Commons Email does not

2012-01-10 Thread Frank Sullivan
I have a web application (Flex, Spring, Hibernate) that has a simple email module that uses Common Email. Currently it only sends plain text messages. Here is basically what happens: HtmlEmail email = new HtmlEmail(); email.setHostName(smtpHost); email.setAuthentication(smtpUser, smtpPassword);