invoice_sections_with_taxes per-agent, RT#79636
[freeside.git] / httemplate / misc / email-invoice.cgi
index 34afa90..b24e042 100755 (executable)
@@ -1,6 +1,8 @@
-<%
+<% $cgi->redirect("${p}view/cust_main.cgi?$custnum") %>
+<%init>
 
-my $conf = new FS::Conf;
+die "access denied"
+  unless $FS::CurrentUser::CurrentUser->access_right('Resend invoices');
 
 #untaint invnum
 my($query) = $cgi->keywords;
@@ -10,16 +12,8 @@ my $invnum = $3;
 my $cust_bill = qsearchs('cust_bill',{'invnum'=>$invnum});
 die "Can't find invoice!\n" unless $cust_bill;
 
-my $error = send_email(
-  $cust_bill->generate_email(
-    'from'     => 
-      ( $cust_bill->_agent_invoice_from || $conf->config('invoice_from') ),
-    'template' => $template,
-  )
-);
-eidiot($error) if $error;
+$cust_bill->email({ 'template' => $template }); 
 
 my $custnum = $cust_bill->getfield('custnum');
-print $cgi->redirect("${p}view/cust_main.cgi?$custnum");
 
-%>
+</%init>