*/
public boolean simpleMessage(int individualID, MailMessageVO mailMessageVO) throws NamingException,CreateException, SendFailedException, MessagingException
{
InitialContext ic = CVUtility.getInitialContext();
MailLocalHome home = (MailLocalHome)ic.lookup("local/Mail");
MailLocal remote = (MailLocal)home.create();
remote.setDataSource(dataSource);
boolean sendFlag = remote.simpleMessage(individualID,mailMessageVO);
return sendFlag;
} // end public