http://qs321.pair.com?node_id=546554


in reply to I need a simple web form processor that will work with "POP before SMTP".

use Net::POP3 together with Mail::Sendmail (or your favorite CPAN module capable of sending mail) in your web form processor.

PS: asking a more specific question might result in more specific answers. :)

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

Replies are listed 'Best First'.
Re^2: I need a simple web form processor that will work with "POP before SMTP".
by Lyla (Initiate) on Apr 30, 2006 at 15:39 UTC

    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.

      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?