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

I'm sorry, I thought my question was specific.
I need a web form processor, for simple forms, that can send the input to an already existing SMTP server that requires "POP before SMTP" with my already existing POP3 server.
Any recomendations would be greatly appreciated.

Content restored by Arunbear, using g0n's mirror.

  • Comment on Re^2: I need a simple web form processor that will work with "POP before SMTP".

Replies are listed 'Best First'.
Re^3: I need a simple web form processor that will work with "POP before SMTP".
by ikegami (Patriarch) on May 13, 2006 at 18:03 UTC
    Use your existing form processor, but add a couple of lines to connect to your POP server (using Net::POP3) before the call to SMTP.
      Yes, that would work. I'm not much of a coder, can you give me a snip?
        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");