We are using maximo 6.2.3 version. To send emails for a particular requirement we are using sendemail method in Mxserver class(psdi/server/Mxserver.class).
sendEMail(String to, String from, String subject, String message)
In mxserver class there is a also a method, where I can add multiple email addresses in TO .
sendEMail(String to[], String from, String subject, String message)
Method in mxserver class for adding one email address in TO and one cc
sendEMail(String to, String cc, String bcc, String from, String subject, String message)
My requirement is to add one email address in TO and multiple email addresses in CC. How I can I do that?
Thanks in advance
I use it the following way and it works fine.