in reply to Re^4: Sending email in perl
in thread Sending email in perl

Have you tried to wrap your code in an eval and evaluate the error message that comes back?
eval { # code here }; if ($@) { confess "$@"; }

Don
WHITEPAGES.COM | INC
Everything I've learned in life can be summed up in a small perl script!