TS 6.5 sp1, Win 2003.
I am trying to send simple email in task(Without using iw_send_email).
(An example from our forum)
use Mail:

ender;
Mail:

ender->new({
from => "SSS <$from_email>",
to => (join ",",
@recipient_emails),
subject => $subject,
smtp => $SMTP,
}
);
I tried other examples also from net. Do we need to take care about anything related to TS environment, to send simple email?
Thanks
Sri