I have a problem with japanese text. My code sends the japanese text in an email basically. The problem is when I am using the encoding type as EUC-JP I am getting the proper text in email but in microsoft-outlook only whereas in gmail and yahoo the same japanese text apperas as junk.
Now if i change the encoding as JIS then yahoo and gmail is showing proper japanese text but in outlook it is coming as junk.
I have tried Shift-JIS also but it is also apperaing junk in outlook.
Any suggestion how to resolve.
Here is the code:
package nielsen.odm.nenrollment.webservlet;
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import javax.mail.NoSuchProviderException;
import javax.servlet.http.HttpSession;
import nielsen.common.model.BusinessObjectException;
import nielsen.odm.nenrollment.util.GetFileContents;
import nielsen.odm.nenrollment.util.SMSUtil;
public class SendMailTest {
public static void main(String[] args) throws BusinessObjectException,
NoSuchProviderException, IOException {
File file = new File("C:\\ja_JA\\PanelistRegistrationEmail.txt");
int ch;
StringBuffer strContent = new StringBuffer("");
FileInputStream fin = null;
try
{
fin = new FileInputStream(file);
while( (ch = fin.read()) != -1)
strContent.append((char)ch);
fin.close();
}
catch(FileNotFoundException e)
{
System.out.println("File " + file.getAbsolutePath() +
" could not be found on filesystem");
}
catch(IOException ioe)
{
System.out.println("Exception while reading the file" + ioe);
}
System.out.println("File contents :");
System.out.println(strContent);
SendMail sendMail = new SendMail();
String emailTxt =strContent.toString(); //strBuffEmailTxt.toString();
String[] outputParamValues = new String[5];
outputParamValues[0] = emailTxt;
outputParamValues[1] = "vibhas.karn.ap@nielsen.com";
outputParamValues[2] = "PrivacyPolicy using Unicode";
outputParamValues[3] = "vibhas.karn.ap@nielsen.com";
outputParamValues[4] = "Unicode";
sendMail.sendSMS(outputParamValues);
System.out.println("Email sent");
}
}
// Code for sending mail
package nielsen.odm.nenrollment.webservlet;
import java.io.UnsupportedEncodingException;
import java.util.Date;
import java.util.Properties;
import java.util.StringTokenizer;
import javax.mail.Address;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.SendFailedException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.Message.RecipientType;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import nielsen.common.model.BusinessObjectException;
import nielsen.odm.nenrollment.common.util.AppDataLoader;
import org.apache.log4j.Level;
import com.sun.mail.smtp.SMTPMessage;
import com.sun.mail.smtp.SMTPTransport;
public class SendMail {
private String from;
private String to;
private String subject;
private String text;
public SendMail(String from, String to, String subject, String text){
this.from = from;
this.to = to;
this.subject = subject;
this.text = text;
}
public SendMail() {
// TODO Auto-generated constructor stub
}
public void send(){
Properties props = new Properties();
props.put("mail.smtp.host", "smarthost.enterprisenet.org");
//props.put("mail.smtp.port", "465");
Session mailSession = Session.getDefaultInstance(props);
Message simpleMessage = new MimeMessage(mailSession);
InternetAddress fromAddress = null;
InternetAddress toAddress = null;
try {
fromAddress = new InternetAddress(from);
toAddress = new InternetAddress(to);
} catch (AddressException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
simpleMessage.setFrom(fromAddress);
simpleMessage.setRecipient(RecipientType.TO, toAddress);
simpleMessage.setSubject(subject);
simpleMessage.setText(text);
Transport.send(simpleMessage);
} catch (MessagingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public boolean sendSMS(String[] smsDetails) throws BusinessObjectException
{
String smsBody = smsDetails[0];
String recipients = smsDetails[1];
System.out.println("sendSMS() - smsBody - " + smsBody);
System.out.println("sendSMS() - recepients - " + recipients);
//String smtpHost = AppConfigLoader.getInstance().getValue("TDCS_SMTP_HOSTNAME", "2"); //"sfexch3.corp.telephia.com";
//String subject = AppConfigLoader.getInstance().getValue("TDCS_Email_Subject", "2"); //"";
//String fromEmailId = AppConfigLoader.getInstance().getValue("TDCS_Email_From_Id", "2"); //"TDCSAdmin";
String smtpHost ="smarthost.enterprisenet.org" ;//AppDataLoader.getInstance().getValue("ENROLLMENT_SMTP_HOSTNAME", "4");//"mailgw.telephia.com";
String subject = smsDetails[2];
String encodingType = null;
String subjectEncoded = null;
String smsBodyEncoded = null;
String contentTypeAndCharset = null;
String charset = null;
//String fromEmailId = AppDataLoader.getInstance().getValue("ENROLLMENT_FROM_EMAIL_ADDRESS", "4");//"mailgw.telephia.com";
System.out.println("sendSMS() - smtpHost - " + smtpHost);
System.out.println("sendSMS() - subject - " + subject);
//logger.info("sendSMS() - fromEmailId - " + fromEmailId);
try{
encodingType = smsDetails[4];
subjectEncoded = new String(subject.getBytes(), encodingType);
smsBodyEncoded = new String(smsBody.getBytes(), encodingType);
System.out.println("Encoded sms:"+smsBodyEncoded);
contentTypeAndCharset = "text/plain; charset="+encodingType;
System.out.println("Encoding in SmsUtil:"+encodingType);
charset = encodingType;
}catch(Exception e){
e.printStackTrace();
}
SMTPTransport tr = null;
try
{
encodingType = smsDetails[4];
if(encodingType == null)
{
System.out.println("Encoding type was not provided to sendSMS method--WARNING!! Email or msgs will not go in proper encoding");
}
try
{ System.out.println("Encoding in SmsUtil before:"+encodingType);
subjectEncoded = new String(subject.getBytes(), encodingType);
smsBodyEncoded = new String(smsBody.getBytes(), encodingType);
contentTypeAndCharset = "text/plain; charset="+encodingType;
System.out.println("Encoding in SmsUtil:"+encodingType);
charset = encodingType;
}
catch(UnsupportedEncodingException usee)
{
System.out.println("UnsupportedEncodingException in changing the encoding of the file"+usee);
}
catch(Exception e)
{
System.out.println("Exception in changing the encoding of the file"+e);
}
//recipients = "vchauhan@telephia.com,sapte@telephia.com"; // for testing
InternetAddress[] recipientList = null;
StringTokenizer st = new StringTokenizer(recipients, ",");
recipientList = new InternetAddress[st.countTokens()];
//If the TO message address has a comma in it, then it must be a comma separated list of email recipients
//Tokenize the recipient list, and create the Internet Address Array of Recipients
for (int i = 0; st.hasMoreTokens(); i++)
{
String msgTo = st.nextToken();
//Ensure the token received is a valid address
if (msgTo != null && msgTo.trim().length() > 0)
{
recipientList[i] = new InternetAddress(msgTo);
}
}
Properties props = System.getProperties();
props.put("mail.smtp.host", smtpHost);
// Get a Session object
Session mailSession = Session.getDefaultInstance(props, null);
// construct the message
SMTPMessage msg = new SMTPMessage(mailSession);
//Set message attributes
//msg.setFrom(new InternetAddress(fromEmailId));
msg.setRecipients(Message.RecipientType.TO, recipientList);
msg.setSubject(subjectEncoded, charset);
msg.setContent(smsBodyEncoded, contentTypeAndCharset);
msg.setSentDate(new Date());
msg.getRecipients(Message.RecipientType.TO);
// changes for support groupt email issue -START
String fromEmailAddress = smsDetails[3];
// logger.info("_________________fromEmailAddress_________________"+fromEmailAddress);
msg.setReplyTo(InternetAddress.parse(smsDetails[3]));
// logger.info(" users address set in replyTo");
msg.setFrom(new InternetAddress(fromEmailAddress));
// changes for support groupt email issue -END
tr = (SMTPTransport)mailSession.getTransport("smtp");
tr.connect();
msg.saveChanges();
try
{
tr.sendMessage(msg, recipientList);
}
catch (SendFailedException sendFailedException)
{
if (sendFailedException.getInvalidAddresses() != null && (sendFailedException.getInvalidAddresses()).length > 0)
{
//logger.log(Level.ERROR, "Error in SMSUtil", sendFailedException);
Address[] addressInvalid = sendFailedException.getInvalidAddresses();
//logger.log(Level.ERROR, "Error in SMSUtil; sendFailedException - Invalid Addresses Array Length is - " + addressInvalid.length);
for (int i = 0; i < addressInvalid.length; i++)
{
//logger.log(Level.ERROR, "Error in SMSUtil; sendFailedException - Invalid Addresses is- " + addressInvalid[i]);
}
throw sendFailedException;
}
}
}
catch (Exception e)
{
//System.out.println(Level.ERROR, "Error in SMSUtil", e);
throw new BusinessObjectException(e);
}
finally
{
try
{
if (tr != null)
{
tr.close();
}
}
catch (MessagingException e)
{System.out.println();
System.out.println(Level.ERROR);
}
}
return true;
}
}