in reply to Re^3: I need a simple web form processor that will work with "POP before SMTP".
in thread I need a simple web form processor that will work with "POP before SMTP".

Yes, that would work. I'm not much of a coder, can you give me a snip?
  • Comment on Re^4: I need a simple web form processor that will work with "POP before SMTP".

Replies are listed 'Best First'.
Re^5: I need a simple web form processor that will work with "POP before SMTP".
by ikegami (Patriarch) on May 13, 2006 at 23:00 UTC
    According to the document to which we've already linked:
    use Net::POP3; my $pop = Net::POP3->new($host); $pop->login($username, $password) or warn("Unable to connect to POP server. " ."Attempting to connect to SMTP server anyway\n");