summaryrefslogtreecommitdiff
path: root/httemplate/misc/email-invoice.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/misc/email-invoice.cgi')
-rwxr-xr-xhttemplate/misc/email-invoice.cgi7
1 files changed, 3 insertions, 4 deletions
diff --git a/httemplate/misc/email-invoice.cgi b/httemplate/misc/email-invoice.cgi
index a560a1838..a3130c79f 100755
--- a/httemplate/misc/email-invoice.cgi
+++ b/httemplate/misc/email-invoice.cgi
@@ -10,10 +10,9 @@ my $cust_bill = qsearchs('cust_bill',{'invnum'=>$invnum});
die "Can't find invoice!\n" unless $cust_bill;
my $error = send_email(
- '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 ],
+ $cust_bill->generate_email(
+ 'from' => $cust_bill->_agent_invoice_from || $conf->config('invoice_from'),
+ )
);
eidiot($error) if $error;