Hello,

We've been using the MIME Lite module for some time now. I need to set it up 
now so one of our scripts so the when some one replies to an email sent that 
the replies to a 'Reply-To' address instead of the 'From' address. Here how I 
have it coded now:

my($msg);

    $msg = MIME::Lite->new(
                 From        => 'f...@mydomain.com',
                 To            => 't...@anotherdomain.com',
                 Reply-To    => 'repl...@mydomain.com',
                 Subject     => 'Simple Test Email',
                 Data        => "This is a simple test message using 
MIME::Lite.",
                 );
$msg->send() or die $!;

when the email is sent out, and you click the reply it stills goes to the 
'From' address instead of the 'Reply-To' address? I went through the docs for 
the module and I though it support the Reply-To field ? I'm I missing something 
here ? Any suggestions would be appreciated


Mike(mickalo)Blezien
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Thunder Rain Internet Publishing
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to