summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2004-06-03 10:09:08 +0000
committerivan <ivan>2004-06-03 10:09:08 +0000
commit1cd72a6f1bd5ca39410f525779f5ca4ee9228a1c (patch)
tree12d73176283c0b53456f548f35ca7113deaf9f14
parent11118ad24d23047a6f30b80532d418b84c81e4c5 (diff)
also fix agent-specific From: address on "re-email" link
-rwxr-xr-xhttemplate/misc/email-invoice.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/email-invoice.cgi b/httemplate/misc/email-invoice.cgi
index 7ab1613ee..a560a1838 100755
--- a/httemplate/misc/email-invoice.cgi
+++ b/httemplate/misc/email-invoice.cgi
@@ -10,7 +10,7 @@ my $cust_bill = qsearchs('cust_bill',{'invnum'=>$invnum});
die "Can't find invoice!\n" unless $cust_bill;
my $error = send_email(
- 'from' => $conf->config('invoice_from'),
+ 'from' => $cust_bill->_agent_invoice_from || $conf->config('invoice_from'),
'to' => [ grep { $_ ne 'POST' } $cust_bill->cust_main->invoicing_list ],
'subject' => 'Invoice',
'body' => [ $cust_bill->print_text ],