in reply to Trouble getting Net::SMTP to work
BTW, you might want to change the spelling in your title to be SMTP. ;) (not trying to being anal/picky, but to assist searches)#!/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;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Trouble getting Net::SMTP to work
by NateTut (Deacon) on Apr 20, 2005 at 14:25 UTC |