Struts (with JavaMail)

2003-10-06 Thread Martin Gainty
I am trying to implement a JavaMail form that uses Struts Any advice? Thanks, -Martin - Original Message - From: Mark Galbreath [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, October 06, 2003 8:34 AM Subject: Craig: Tomcat 5.0 WAR Deployment Craig,

Re: Struts (with JavaMail)

2003-10-06 Thread Jeff Kyser
ask tom ? :-) On Monday, October 6, 2003, at 08:09 AM, Martin Gainty wrote: I am trying to implement a JavaMail form that uses Struts Any advice? Thanks, -Martin - Original Message - From: Mark Galbreath [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday,

Re: Struts (with JavaMail)

2003-10-06 Thread Martin Gainty
That is the obvious direction.. Thanks! -Martin - Original Message - From: Jeff Kyser [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, October 06, 2003 10:00 AM Subject: Re: Struts (with JavaMail) ask tom ? :-) On Monday, October 6, 2003, at 08:09

Re: Struts (with JavaMail)

2003-10-06 Thread James Mitchell
, October 06, 2003 9:09 AM Subject: Struts (with JavaMail) I am trying to implement a JavaMail form that uses Struts Any advice? Thanks, -Martin - Original Message - From: Mark Galbreath [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, October 06, 2003

SV: Struts and JavaMail

2002-08-14 Thread Marcus Andersson
]] Skickat: den 13 augusti 2002 22:35 Till: Struts Users Mailing List Ämne: Re: Struts and JavaMail On Tue, 13 Aug 2002, Marcus Andersson wrote: Date: Tue, 13 Aug 2002 22:29:03 +0200 From: Marcus Andersson [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: '[EMAIL

Re: SV: Struts and JavaMail

2002-08-14 Thread Craig R. McClanahan
On Wed, 14 Aug 2002, Marcus Andersson wrote: Date: Wed, 14 Aug 2002 09:10:45 +0200 From: Marcus Andersson [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: SV: Struts and JavaMail Thanx a lot. I had to re

Struts and JavaMail

2002-08-13 Thread Marcus Andersson
Hello everyone I have this problem with JavaMail when running Struts in Tomcat. I have written a class (MailFacade) that takes a couple of parameters (smtp host, user, password, message und so weiter). When I test it stand-alone with a main method it works like a charm. When I try

Re: Struts and JavaMail

2002-08-13 Thread Craig R. McClanahan
On Tue, 13 Aug 2002, Marcus Andersson wrote: Date: Tue, 13 Aug 2002 22:29:03 +0200 From: Marcus Andersson [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: Struts and JavaMail Hello everyone I have this problem

RE: Struts and JavaMail

2002-04-30 Thread Joe Latty
To: Struts Users Mailing List Subject: Struts and JavaMail I am attempting to send a file (that has been uploaded with the file tag) as an attachment using JavaMail. I am using some very standard code that I have used before many times, the only difference is now I am using Struts

Struts and JavaMail

2002-04-29 Thread Joe Latty
I am attempting to send a file (that has been uploaded with the file tag) as an attachment using JavaMail. I am using some very standard code that I have used before many times, the only difference is now I am using Struts and it is not working. Is anyone else successfully sending files as email

struts and javamail attachments

2002-04-26 Thread Joe Latty
Normally this would be unrelated to struts, the problem is that this method only fails when called from the action class. I have a form, which uploads a file the action class then saves the file on the server and attempts to email the file as an attachment. The email arrives with subject but no

Re: [Somewhat OT] Sending HTML email using struts/java/javamail

2002-04-25 Thread Eddie Bush
, April 24, 2002 8:13 PM Subject: [Somewhat OT] Sending HTML email using struts/java/javamail I have an internal application that needs to send a html email (management choice, not mine). The application is a mini struts application, but I need to manually format the html email using a large string

Re: [Somewhat OT] Sending HTML email using struts/java/javamail

2002-04-25 Thread adam
1.Create a jsp that Generates your email. 2.Find out the name of the class that your JSP compiler creates. You can force this with most JSP compilers. 3. Create an instance of that class and pass a custom request and response object to its get method. The response object will contain the

Re: [Somewhat OT] Sending HTML email using struts/java/javamail

2002-04-25 Thread Edward Muller
All of the form data is in a form been and I don't know of any way to pass that to a URLConnection. Also ... I don't want to email the form. I am emailing something that looks like the form, but instead of a textarea and the like ... I need to put the results of the form. On Wed, 2002-04-24 at

Re: [Somewhat OT] Sending HTML email using struts/java/javamail

2002-04-25 Thread Edward Muller
You still end up writing HTML in the servlet, which is what I want to avoid. On Thu, 2002-04-25 at 00:20, Rick Reumann wrote: On Wednesday, April 24, 2002, 9:13:17 PM, Edward Muller wrote: EM I have an internal application that needs to send a html email EM (management choice, not mine).

Re: [Somewhat OT] Sending HTML email using struts/java/javamail

2002-04-25 Thread Edward Muller
: [Somewhat OT] Sending HTML email using struts/java/javamail I have an internal application that needs to send a html email (management choice, not mine). The application is a mini struts application, but I need to manually format the html email using a large string and constantly appending

Re: [Somewhat OT] Sending HTML email using struts/java/javamail

2002-04-25 Thread pducuron \(kgb\)
Users Mailing List [EMAIL PROTECTED] Sent: Thursday, 25. April 2002 11:37 Subject: Re: [Somewhat OT] Sending HTML email using struts/java/javamail You still end up writing HTML in the servlet, which is what I want to avoid. On Thu, 2002-04-25 at 00:20, Rick Reumann wrote: On Wednesday, April 24

[Somewhat OT] Sending HTML email using struts/java/javamail

2002-04-24 Thread Edward Muller
I have an internal application that needs to send a html email (management choice, not mine). The application is a mini struts application, but I need to manually format the html email using a large string and constantly appending to it and then I send the email via javamail. Does anyone know of

Re: [Somewhat OT] Sending HTML email using struts/java/javamail

2002-04-24 Thread Jeffrey Bonevich
Could you open an InputStream on an URLConnection on the jsp page, then read that stream into the mail object? That would be one way to do it and leverage the existing app. jeff Edward Muller wrote: I have an internal application that needs to send a html email (management choice, not

Re: [Somewhat OT] Sending HTML email using struts/java/javamail

2002-04-24 Thread Rick Reumann
On Wednesday, April 24, 2002, 9:13:17 PM, Edward Muller wrote: EM I have an internal application that needs to send a html email EM (management choice, not mine). The application is a mini struts EM application, but I need to manually format the html email using a EM large string and constantly