in reply to Re^4: 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".

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");
  • Comment on Re^5: I need a simple web form processor that will work with "POP before SMTP".
  • Download Code