Results 1 to 1 of 1
- 09-01-2009, 10:49 AM #1
Member
- Join Date
- Sep 2009
- Posts
- 1
- Rep Power
- 0
Using freemarker to send an email in Japanese utf-8
I have an emaill that is picking up content from a freemarker template, the email is being picked up fine and being output in the logs correctly, however when I call the message string into a UTF-8 jsp via a bean the tet is garbled. As is the email that it sends which has been set up to send UTF-8 mails (the emailer is correct)
I have also tried an ASCII version of the template but it fails to show in Japanese.
Is there a way to send this correctly,
I appreciate your help as I am a Java newbie
Many thanks
BTW I also tried using the following Output stream writer but to be honest I am confused by all the output streeams, readers, writers and buffers!
ByteArrayOutputStream out = new ByteArrayOutputStream();
Writer StringWriter stringWriter = new OutputStreamWriter(out, "UTF-8");
Java Code:@SuppressWarnings("unchecked") public void memberSignup(){ try { StringWriter stringWriter = new StringWriter(); template = cfg.getTemplate("memberSignUp.ftl"); Map root = new HashMap(); root.put("user", "Big Joe"); template.process(root, stringWriter); message= stringWriter.toString(); subject="This is my test email"; System.out.println("template"+message); } catch (IOException e) { e.printStackTrace(); } catch (TemplateException e) { e.printStackTrace(); } }
Similar Threads
-
how to send an email
By painamrata in forum JavaServer Pages (JSP) and JSTLReplies: 2Last Post: 02-22-2009, 04:28 PM -
send email using JMS
By Heather in forum Advanced JavaReplies: 9Last Post: 01-07-2009, 03:04 PM -
send email using apache commons email
By jnamendi in forum JavaServer Faces (JSF)Replies: 0Last Post: 10-14-2008, 05:55 PM -
Email send problem
By serjant in forum JavaServer Pages (JSP) and JSTLReplies: 0Last Post: 09-19-2008, 02:15 AM -
To send email of page present Web from a Jsp
By Marcus in forum JavaServer Pages (JSP) and JSTLReplies: 1Last Post: 06-09-2007, 04:08 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks