From a9224f0021fb04213a5405b5fde947b734fad80a Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 26 Sep 2011 10:12:37 +0100 Subject: [PATCH] Added Reply-To: support. --- Template.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Template.pm b/Template.pm index a142f61..e4b20ac 100644 --- a/Template.pm +++ b/Template.pm @@ -450,6 +450,7 @@ sub email_template { $email .= "To: ".$args -> {"***to***"}."\n"; $email .= "Cc: ".$args -> {"***cc***"}."\n" if($args -> {"***cc***"}); $email .= "Bcc: ".$args -> {"***bcc***"}."\n" if($args -> {"***bcc***"}); + $email .= "Reply-To: ".$args -> {"***replyto***"}."\n" if($args -> {"***replyto***"}); $email .= "Subject: ".$args -> {"***subject***"}."\n"; $email .= "Date: ".strftime($args -> {"***date***"})."\n" if($args -> {"***date***"}); $email .= "\n";