hello,
In my reply email, I want ">" to show up at the beginning of every line so that it separates the previous messages from the new one to be.
How do I make the ">" to show up?
Example:
>To
ublic Information; Agriculture; Recovery
>Subject:[RE]: testing0944
>Date:2004-11-03 09:49:28.0
>Hello,
> I am doing a test to see if the body message shows up >properly.
>later,
>NoBody
Thanks,
Ngai
===========================================================
this is the code I have to create the above
===========================================================
if(msg != null) {
outSubject.setContent(msg.getSubject());
outBody.setContent("From :" + msg.getSenderId()+ "\n" + "To :" + msg.getRecipient().replaceAll("<br>", "; " ) + "\n" + "Subject:" + msg.getSubject()+ "\n" +"Date:" + msg.getTimeSent()+ "\n" + "\n" + "\n" + msg.getMsgBody());
}
In my reply email, I want ">" to show up at the beginning of every line so that it separates the previous messages from the new one to be.
How do I make the ">" to show up?
Example:
>To
>Subject:[RE]: testing0944
>Date:2004-11-03 09:49:28.0
>Hello,
> I am doing a test to see if the body message shows up >properly.
>later,
>NoBody
Thanks,
Ngai
===========================================================
this is the code I have to create the above
===========================================================
if(msg != null) {
outSubject.setContent(msg.getSubject());
outBody.setContent("From :" + msg.getSenderId()+ "\n" + "To :" + msg.getRecipient().replaceAll("<br>", "; " ) + "\n" + "Subject:" + msg.getSubject()+ "\n" +"Date:" + msg.getTimeSent()+ "\n" + "\n" + "\n" + msg.getMsgBody());
}