in reply to Re: Email Forwarding
in thread Email Forwarding

The email would come from "replaceme@thedomain.com" w/ Subject: "this is the subject to replace" Which "replaceme" is in the Aliase file as: replaceme: "|/msg/forward.pl" When an email is received, the perl script is ran, but I need it to include the Message that is sent.

Replies are listed 'Best First'.
Re^3: Email Forwarding
by aitap (Curate) on Feb 05, 2013 at 18:42 UTC
    Then use one of the modules specified to read and parse the text going from STDIN. You can read from STDIN filehandle using diamond operator (<>), like this:  my $whole_message = do { local $/; <STDIN> }; (see also $/ for more information on slurping filehandle contents).
    Sorry if my advice was wrong.