in reply to Net::SMTP - Authentication Problem
#!/usr/bin/perl use warnings; use strict; use Net::SMTP_auth; my $smtp = Net::SMTP_auth->new('zentara.zentara.net'); $smtp->auth('LOGIN', 'z', 'ztest'); $smtp->mail('z@zentara.zentara.net'); $smtp->to('zentara@zentara.zentara.net'); $smtp->data(); $smtp->datasend("To: postmaster\n"); $smtp->datasend("\n"); $smtp->datasend("A simple test message\n"); $smtp->dataend(); $smtp->quit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Net::SMTP - Authentication Problem
by Anonymous Monk on Feb 12, 2008 at 01:08 UTC | |
|
Re^2: Net::SMTP - Authentication Problem
by vi_srikanth (Acolyte) on Aug 29, 2006 at 13:38 UTC | |
by zentara (Cardinal) on Aug 29, 2006 at 16:45 UTC | |
by vi_srikanth (Acolyte) on Aug 30, 2006 at 09:40 UTC | |
by zentara (Cardinal) on Aug 30, 2006 at 12:46 UTC |