blob: f0eb4e33cb991a6cac1fb67c2f892a09a415d03a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/local/bin/perl -w
use Mail::Mailer;
print "1..2\n";
print "ok 1\n";
$mail = new Mail::Mailer or print "not ";
print "ok 2\n";
undef $mail;
# well until I have a way of getting an address, that is all I can do.
# better than nothing :-)
|