Posted By:
Gautam_Marwaha
Posted On:
Monday, August 12, 2002 05:55 AM
InternetAddress has a constructor which takes the second arg as personal name. Or set it using InternetAddress.setPersonal(string). These surely work. Also if you create a InternetAddress with:
String str = ""Foo Bar"" ";
InternetAddress add = new InternetAddress(str);
will also work.