in reply to Trouble getting Net::SMTP to work

how about trying a simple:
#!/usr/bin/perl use warnings; use strict; use Net::SMTP; my $smtp = Net::SMTP->new('smtpmail.server.com'); die "Unable to create smtp!\n$!\n" unless defined($smtp); $smtp->quit;
BTW, you might want to change the spelling in your title to be SMTP. ;) (not trying to being anal/picky, but to assist searches)

Replies are listed 'Best First'.
Re^2: Trouble getting Net::SMTP to work
by NateTut (Deacon) on Apr 20, 2005 at 14:25 UTC
    Transient wrote...
    >(not trying to being anal/picky...

    That sounds positively hemorrhoidal.