I'm trying to create a marketing campaign emailer using a template JSP file as a content, so that i can do personalization for my web page.
Is anybody could tell me how to ?
Thanks.
-
JSP Template (4 messages)
- Posted by: leech everson
- Posted on: April 27 2003 14:30 EDT
Threaded Messages (4)
- Re: JSP Template by Alan Choy on April 27 2003 18:01 EDT
- Re: JSP Template by leech everson on April 28 2003 04:34 EDT
-
Re: JSP Template by David Rabinowitz on April 28 2003 06:00 EDT
- Re: JSP Template by leech everson on April 29 2003 01:55 EDT
-
Re: JSP Template by David Rabinowitz on April 28 2003 06:00 EDT
- Re: JSP Template by leech everson on April 28 2003 04:34 EDT
-
Re: JSP Template[ Go to top ]
- Posted by: Alan Choy
- Posted on: April 27 2003 18:01 EDT
- in response to leech everson
I think you need to provide some more details (i.e. requirements) in order for someone to provide meaningful feedback. -
Re: JSP Template[ Go to top ]
- Posted by: leech everson
- Posted on: April 28 2003 04:34 EDT
- in response to Alan Choy
I want to send out an HTML/JSP email like below :
-------------------
heloo <%=name%>
I have something new 4 u:
<%=content%>
-----------------------
Different people have different content (maybe image, etc), depend on users.
So can I use a JSP as template for my email content. And how to do that? -
Re: JSP Template[ Go to top ]
- Posted by: David Rabinowitz
- Posted on: April 28 2003 06:00 EDT
- in response to leech everson
no, you cant use jsp in a mail - jsp lives only inside jsp container (like tomcat).
you can however create text template, with strings like "%USER%", "%CONTENT%" inside it it, and then replace them when creating the email. -
Re: JSP Template[ Go to top ]
- Posted by: leech everson
- Posted on: April 29 2003 13:55 EDT
- in response to David Rabinowitz
Thanks..