warum wird hier der Return-Path nicht gesetzt?
Code: Select all
$msg = MIME::Lite->new(
From => $from,
To => $to,
Subject => $subject,
Type => 'multipart/mixed'
);
$msg->add("Return-Path" => $return);
$msg->add("Reply-To" => $noreply);
$msg->attach( ... )
$msg->send();