Return-Path: Delivered-To: apmail-commons-issues-archive@locus.apache.org Received: (qmail 2807 invoked from network); 11 Apr 2008 05:53:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Apr 2008 05:53:00 -0000 Received: (qmail 7474 invoked by uid 500); 11 Apr 2008 05:52:59 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 7370 invoked by uid 500); 11 Apr 2008 05:52:58 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 7273 invoked by uid 99); 11 Apr 2008 05:52:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Apr 2008 22:52:58 -0700 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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Apr 2008 05:52:15 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 197ED234C0C5 for ; Thu, 10 Apr 2008 22:50:05 -0700 (PDT) Message-ID: <1645622223.1207893005103.JavaMail.jira@brutus> Date: Thu, 10 Apr 2008 22:50:05 -0700 (PDT) From: "Yu Kobayashi (JIRA)" To: issues@commons.apache.org Subject: [jira] Updated: (EMAIL-75) Email.setFrom, addTo should use Email.charset In-Reply-To: <1142451915.1207892884923.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/EMAIL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Yu Kobayashi updated EMAIL-75: ------------------------------ Description: Email.addTo() and setFrom() doesn't use Email.charset. Code should be as following. public Email setFrom(String email, String name) throws EmailException { return setFrom(email, name, this.charset); } public Email addTo(String email, String name) throws EmailException { return addTo(email, name, this.charset); } was: Email.addTo() and setFrom() doesn't use Email.charset. Code should be as following. public Email setFrom(String email, String name) throws EmailException { return setFrom(email, name, this.charset); } public Email addTo(String email, String name) throws EmailException { return addTo(email, name, this.charset); } > Email.setFrom, addTo should use Email.charset > --------------------------------------------- > > Key: EMAIL-75 > URL: https://issues.apache.org/jira/browse/EMAIL-75 > Project: Commons Email > Issue Type: Bug > Affects Versions: 1.1 > Reporter: Yu Kobayashi > Priority: Minor > > Email.addTo() and setFrom() doesn't use Email.charset. > Code should be as following. > public Email setFrom(String email, String name) > throws EmailException > { > return setFrom(email, name, this.charset); > } > public Email addTo(String email, String name) > throws EmailException > { > return addTo(email, name, this.charset); > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.