I have created a cron task from which I am supposed to send an email. I recieve 'TO' email id from cron task itself and 've written the code like
if(getToEmail() != null && getFromEmail() != null)
MXServer.sendEMail(getToEmail(), getFromEmail(), title, message);
What I guess from log is that my smtp server configuration has some problem...
My smtp server has the provision for userid and password facility for authentication. but I dont see any userid and password configuration in maximo.properties.
Please help me to do the email configuration....
