Forum: Java Oct 24th, 2008 |
| Replies: 8 Views: 2,191 I looked at the above page but I'm not real familiar with jsp or servlets. Could I tokenize and parse the query string that is sent and set each tokenized part to toAddress, ect? |
Forum: Java Oct 23rd, 2008 |
| Replies: 8 Views: 2,191 Thanks, I'll try that. Is there not just a simple GET command in Java that will get the values? |
Forum: Java Oct 23rd, 2008 |
| Replies: 8 Views: 2,191 This is my java code that I have when I hard coded the information
SMTPSender s = new SMTPSender();
s.setToAddress("email@host.edu");
s.setFromAddress("email@host.edu");
... |
Forum: Java Oct 22nd, 2008 |
| Replies: 8 Views: 2,191 I'm creating a SMTP client. I'm entering the data(to, from, subject, body) in a HTML form. How do I pass that data into the actual Java SMTP client so I can send it? I know how to hardcode the data... |