sending email
When trying to add hard coded text to the message body along with selected values off the form, the entire line will not appear in the email message.
message.println(getRadDD().getSelected().toString());
message.println(getModalityDD().getSelected().toString());
message.println(getPatientTxt().getText().toString());
If I add "Name: " + to the following line of code, the nothing will appear in the message body for this line.
message.println("Name: " + getRadDD().getSelected().toString());

