X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fmisc%2Femail-customers.html;h=57f451fdc33aaafbe3e9ef32b9c47f448cce7b4f;hb=026dc7ad72ba972f230b6709e31fa64397d75ad4;hp=d1d5ac735eb99cf66a40263cbd98a6b2d9828854;hpb=c6ef5a3a043c4fafa2f8d21028609f1b9b70eb47;p=freeside.git diff --git a/httemplate/misc/email-customers.html b/httemplate/misc/email-customers.html index d1d5ac735..57f451fdc 100644 --- a/httemplate/misc/email-customers.html +++ b/httemplate/misc/email-customers.html @@ -6,19 +6,28 @@ frozen hash in the 'search' cgi param. Form allows selecting an existing msg_te or creating a custom message, and shows a preview of the message before sending. If linked to as a popup, include the cgi parameter 'popup' for proper header handling. -This may also be used as an element in other pages, enabling you to pass along -additional substitution parameters to a message template, with the following options: +This may also be used as an element in other pages, enabling you to provide an +alternate initial form while using this for search freezing/thawing and +preview/send actions, with the following options: -form_action - the URL to submit the form to +acl - the access right to use (defaults to 'Bulk send customer notices') -sub_param_process - subroutine to override cgi param values (such as msgnum) -and parse/delete additional form fields from the cgi; should return a %sub_param -hash to be passed along for message substitution +form_action - the URL to submit the form to -alternate_form - an alternate form for template selection/message creation +process_url - the URL for starting the JSRPC process title - the title of the page +no_search_fields - arrayref of additional fields that are not search parameters + +alternate_form - subroutine that returns alternate html for the initial form, +replaces msgnum/from/subject/html_body/action inputs and submit button, +not used if an action is specified + +post_search_hook - sub hook for additional processing after search has been processed from cgi, +gets passed options 'conf' and 'search' (a reference to the unfrozen %search hash), +should be used to set msgnum or from/subject/html_body cgi params + % if ($popup) { @@ -35,9 +44,6 @@ title - the title of the page %# multi-valued search params. We are no longer in search context, so we %# pack the search into a Storable string for later use. -% if (%sub_param) { - -% } @@ -47,8 +53,8 @@ title - the title of the page <% include('/elements/progress-init.html', 'OneTrueForm', - [ qw( search table from subject html_body text_body msgnum sub_param ) ], - 'process/email-customers.html', + [ qw( search table from subject html_body text_body msgnum ) ], + $process_url, $pdest, ) %> @@ -88,7 +94,7 @@ title - the title of the page - Message (HTML display): + Message (HTML display): <% $html_body %> @@ -99,13 +105,16 @@ title - the title of the page % ); - Message (Text display): -
<% $text_body %>
+ Message (Text display): + + click to view + + -% if ( $cgi->param('action') eq 'preview' ) { +% if ( $cgi->param('action') eq 'preview' ) {