diff options
author | Mark Wells <mark@freeside.biz> | 2013-03-25 15:47:34 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-03-25 15:47:34 -0700 |
commit | dfc85a4245f2d15f258d840b98f0508c50228e40 (patch) | |
tree | 0c4b59b89ab068e2ccd34d05abe49542ef8efaf6 /httemplate/edit/cust_main | |
parent | 6bf3df8177a22d2275b1a68045ab5ff2e831af42 (diff) |
email opt-out flag, #19312
Diffstat (limited to 'httemplate/edit/cust_main')
-rw-r--r-- | httemplate/edit/cust_main/billing.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index 6ba73ad68..5a66f0a60 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -521,7 +521,13 @@ <% $conf->exists('cust_main-require_invoicing_list_email', $agentnum) ? $r : '' %>Email address(es) </TD> - <TD WIDTH="408"><INPUT TYPE="text" NAME="invoicing_list" VALUE="<% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) %>"></TD> + <TD WIDTH="408"><INPUT TYPE="text" NAME="invoicing_list" VALUE="<% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) %>"> + <INPUT TYPE="checkbox" NAME="message_noemail" VALUE="Y" <% + ( $cust_main->message_noemail eq 'Y' ) + ? 'CHECKED' + : '' + %>> <% emt('Do not send notices') %> + </TD> </TR> % } |