Cannot copy correctly the code block

Go4Expert Member
28Mar2007,21:15   #1
Mary's Avatar
When I try to copy the following code the copy does not work and the link breaks are not copied properly.

Code: Java
// create a message
Message msg = new MimeMessage(session);

// set the from
msg.setFrom(fromAddress);

InternetAddress[] address ={new InternetAddress(_to)};
msg.setRecipients(Message.RecipientType.TO, address);
msg.setSubject(_subject);

MimeBodyParttextPart = new MimeBodyPart();
textPart.setContent(_bodyText, "text/plain");

MimeBodyPartattachFilePart = new MimeBodyPart();
FileDataSourcefds = new FileDataSource(_fileName);
attachFilePart.setDataHandler(new DataHandler(fds));
attachFilePart.setFileName(fds.getName());

Multipart mp = new MimeMultipart();
mp.addBodyPart(textPart);
mp.addBodyPart(attachFilePart);

msg.setContent(mp);
Transport.send(msg);
Go4Expert Founder
28Mar2007,22:57   #2
shabbir's Avatar
The problem has been identified and there is some bug that will be fixed soon. Thanks for pointing that out.
Go4Expert Founder
25May2007,17:16   #3
shabbir's Avatar
I just forgot to mention it here and its already solved.