I'm using JavaMail to send an SMS message to my ATT phone. The message is consumed by the phone sucessfully, but I can't seem to generate a new line in the message. I've used \n, \r, but nothing seems to work. I even tried (char)13, which is the ASCII code for \n, I think!
I tried that, and here's what happened (strange)... In my program, I set the message text with something like... message.setText("Hello \0x0A World!"); ...and after the message is sent and displayed on my phone, it reads... Hello
The "World" part is missing. Strange. Any ideas? Tahanks