Re: Problems emailing from struts

2005-10-28 Thread Borislav Sabev
C.F. Scheidecker Antunes wrote: Hello, Thanks for the info. I am still having problems sending email from a struts action. I've created a separate class emailClient to send the message. The class is on the end of the email. I have mailapi.jar under /WEB-INF/lib/ version 1.3.3.01

Re: Problems emailing from struts

2005-10-27 Thread Xavier Vanderstukken
www.jarhoo.com is your friend to find missing jar files libraries C.F. Scheidecker Antunes wrote: Hello, Thanks for the info. I am still having problems sending email from a struts action. I've created a separate class emailClient to send the message. The class is on the end of the email.

Re: Problems emailing from struts

2005-10-27 Thread C.F. Scheidecker Antunes
Hello, Thanks for the info. I am still having problems sending email from a struts action. I've created a separate class emailClient to send the message. The class is on the end of the email. I have mailapi.jar under /WEB-INF/lib/ version 1.3.3.01 but nothing works. Here

Re: Problems emailing from struts

2005-10-27 Thread Borislav Sabev
java.lang.NoClassDefFoundError: javax/mail/Message com.nando.struts.action.TestAction.send1Mail(TestAction.java:35) com.nando.struts.action.TestAction.execute(TestAction.java:69) Seems that you don't have mail.jar in WEB-INF/lib. borislav

Problems emailing from struts

2005-10-27 Thread C.F. Scheidecker Antunes
Hello all, I've been trying to email from my struts application without success. I've first tried the standard approach wich is to use javax.mail.* javax.mail.internet.* classes. As on O'reilly's Servlet Cookbook. Then I've tried commons email, also without success. So at this point I wonder