also fix agent-specific From: address on "re-email" link
authorivan <ivan>
Thu, 3 Jun 2004 10:09:08 +0000 (10:09 +0000)
committerivan <ivan>
Thu, 3 Jun 2004 10:09:08 +0000 (10:09 +0000)
httemplate/misc/email-invoice.cgi

index 7ab1613..a560a18 100755 (executable)
@@ -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 ],