X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fmisc%2Femail-customers.html;h=b87a1bfbb81a0571ff3c68630ffc4f61384007c1;hb=2103a18a3be93d38f2c1e69bea14a2681e382007;hp=759c8bf944867bdbda63d941b99f810d4f2ab92e;hpb=0fb307c305e4bc2c9c27dc25a3308beae3a4d33c;p=freeside.git diff --git a/httemplate/misc/email-customers.html b/httemplate/misc/email-customers.html index 759c8bf94..b87a1bfbb 100644 --- a/httemplate/misc/email-customers.html +++ b/httemplate/misc/email-customers.html @@ -76,7 +76,7 @@ @@ -107,18 +107,22 @@ Template: <% include('/elements/tr-input-text.html', 'field' => 'from', 'label' => 'From:', + 'size' => 50, ) %> <% include('/elements/tr-input-text.html', 'field' => 'subject', 'label' => 'Subject:', + 'size' => 50, ) %> - Message: - <% include('/elements/htmlarea.html', 'field'=>'html_body') %> + Message: + <& '/elements/htmlarea.html', + 'field' => 'html_body', + 'width' => 600 &> @@ -160,7 +164,7 @@ else { @search{keys %search} = map { /\0/ ? [ split /\0/, $_ ] : $_ } values %search; } -my $title = 'Send bulk customer notices'; +my $title = 'Send customer notices'; my $num_cust; my $from = $cgi->param('from') || ''; @@ -185,8 +189,12 @@ if ( $cgi->param('action') eq 'preview' ) { or die "template not found: ".$cgi->param('msgnum'); $sql_query->{'extra_sql'} .= ' LIMIT 1'; $sql_query->{'order_by'} = ''; - my $cust = qsearchs($sql_query)->cust_main; - my %message = $msg_template->prepare( 'cust_main' => $cust ); + my $object = qsearchs($sql_query); + my $cust = $object->cust_main; + my %message = $msg_template->prepare( + 'cust_main' => $cust, + 'object' => $object + ); ($from, $subject, $html_body) = @message{'from', 'subject', 'html_body'}; } }