MIME::Lite 3.01 in CGI script doing nothing
From: David Christensen (dpchrist_at_holgerdanske.com)
Date: 02/27/04
- Next message: Ramprasad A Padmanabhan: "Re: how do I CPAN not to use Net::FTP"
- Previous message: Juha Laiho: "Re: how do I CPAN not to use Net::FTP"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Fri, 27 Feb 2004 02:18:38 GMT
comp.lang.perl.modules:
I am running:
<CVSENV>root@d3020g:~/d3020g# perl -v
This is perl, v5.6.1 built for i386-linux
...
<CVSENV>root@d3020g:~/d3020g# apache -v
Server version: Apache/1.3.26 (Unix) Debian GNU/Linux
Server built: Oct 26 2002 09:15:15
<CVSENV>dpchrist@d3020g:~$ perldoc MIME::Lite | grep Version:
Version: 3.01 (Maintenance release and a new caretaker!)
<CVSENV>root@d3020g:~/d3020g# exim -bV
Exim version 3.35 #1 built 05-Sep-2003 13:52:12
Copyright (c) University of Cambridge 2001
The following code is in a CGI script:
my $msg = MIME::Lite->new(
From => $from_address,
To => $to_address,
Subject => 'hello',
Data => "Hello, world!",
) or die "error creating MIME::Lite message";
$msg->send() or die "error sending MIME::Lite message";
The script runs the code without dying, but I never receive at message
at $to_address nor an error reply at $from_address.
Any suggestions?
TIA,
David
- Next message: Ramprasad A Padmanabhan: "Re: how do I CPAN not to use Net::FTP"
- Previous message: Juha Laiho: "Re: how do I CPAN not to use Net::FTP"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|