in reply to reply-to address being truncated

You are probably using the email like this:
$email="address@host.name.com" ;
In this case, perl interprets "@host" as access to an array, which you probably don't have, so it is empty.

Using strict and warnings would help in this case.

To resolve, use single-quotes (perl does not interpolate the contents).

     Syntactic sugar causes cancer of the semicolon.        --Alan Perlis

Replies are listed 'Best First'.
Re^2: reply-to address being truncated
by fionbarr (Friar) on Oct 20, 2010 at 12:06 UTC
    my mistake...my code actually looks like:
    $email = "address\@host.name.com";
    the text "host.name" is removed and I get 'address@name.com'.
      I don't understand how that could fail.

      Could you post an actual code snipped, and/or run debug and examine what it actually contains ?

           Syntactic sugar causes cancer of the semicolon.        --Alan Perlis