Return-Path: Delivered-To: apmail-labs-commits-archive@minotaur.apache.org Received: (qmail 22548 invoked from network); 24 Feb 2009 17:04:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Feb 2009 17:04:46 -0000 Received: (qmail 83689 invoked by uid 500); 24 Feb 2009 17:04:45 -0000 Delivered-To: apmail-labs-commits-archive@labs.apache.org Received: (qmail 83597 invoked by uid 500); 24 Feb 2009 17:04:45 -0000 Mailing-List: contact commits-help@labs.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: labs@labs.apache.org Delivered-To: mailing list commits@labs.apache.org Received: (qmail 83577 invoked by uid 99); 24 Feb 2009 17:04:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Feb 2009 09:04:45 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Feb 2009 17:04:43 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B96932388920; Tue, 24 Feb 2009 17:04:22 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r747435 - /labs/magma/branches/0.0.1/email-commons/src/main/java/org/apache/magma/email/CommonsEmail.java Date: Tue, 24 Feb 2009 17:04:21 -0000 To: commits@labs.apache.org From: simoneg@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090224170422.B96932388920@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simoneg Date: Tue Feb 24 17:04:18 2009 New Revision: 747435 URL: http://svn.apache.org/viewvc?rev=747435&view=rev Log: LABS-298 : UTF-8 on commons email, ported back to 0.0.1 Modified: labs/magma/branches/0.0.1/email-commons/src/main/java/org/apache/magma/email/CommonsEmail.java Modified: labs/magma/branches/0.0.1/email-commons/src/main/java/org/apache/magma/email/CommonsEmail.java URL: http://svn.apache.org/viewvc/labs/magma/branches/0.0.1/email-commons/src/main/java/org/apache/magma/email/CommonsEmail.java?rev=747435&r1=747434&r2=747435&view=diff ============================================================================== --- labs/magma/branches/0.0.1/email-commons/src/main/java/org/apache/magma/email/CommonsEmail.java (original) +++ labs/magma/branches/0.0.1/email-commons/src/main/java/org/apache/magma/email/CommonsEmail.java Tue Feb 24 17:04:18 2009 @@ -14,7 +14,12 @@ public class CommonsEmail extends Email { - HtmlEmail mail = new HtmlEmail(); + HtmlEmail mail = null; + + { + mail = new HtmlEmail(); + mail.setCharset("UTF-8"); + } @Override --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@labs.apache.org For additional commands, e-mail: commits-help@labs.apache.org