summaryrefslogtreecommitdiff
path: root/httemplate/misc
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-02-27 00:29:19 -0800
committerIvan Kohler <ivan@freeside.biz>2014-02-27 00:29:19 -0800
commita75e66f42a529d69d2f38a12290be29187d0d9ec (patch)
treef736e9fe4835dcc0c6edea3168357c1121af65b3 /httemplate/misc
parent5b7ba710939e35f0ed1031e7e0abfbb21ab1bfa0 (diff)
agent-virt "email a notice to this customer" from address, RT#27424
Diffstat (limited to 'httemplate/misc')
-rw-r--r--httemplate/misc/email-customers.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/misc/email-customers.html b/httemplate/misc/email-customers.html
index b47f4414f..de800ec6d 100644
--- a/httemplate/misc/email-customers.html
+++ b/httemplate/misc/email-customers.html
@@ -109,7 +109,7 @@ Template:
<& /elements/input-text.html,
'field' => 'from_addr',
'type' => 'email', # HTML5, woot
- 'value' => $conf->config('invoice_from'),
+ 'value' => $conf->config('invoice_from', $agent_virt_agentnum),
'size' => 20,
&>&gt;</TD>
@@ -154,7 +154,10 @@ die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Bulk send customer notices');
my $conf = FS::Conf->new;
+
my $table = $cgi->param('table') or die "'table' required";
+my $agent_virt_agentnum = $cgi->param('agent_virt_agentnum') || '';
+
my %search;
if ( $cgi->param('search') ) {
%search = %{ thaw(decode_base64($cgi->param('search'))) };