diff options
author | jeff <jeff> | 2007-03-21 01:21:39 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-03-21 01:21:39 +0000 |
commit | 8591b5a157a2ee24c1467718eb0ce731a388f5c1 (patch) | |
tree | 60123b9b13666010bcb61aaae1c4f6f47a8cac24 /httemplate/pref/pref.html | |
parent | 67569d160196abf84e889514b1b2f90053548c93 (diff) |
ticket 1427, automatically email excel a/r report
Diffstat (limited to 'httemplate/pref/pref.html')
-rw-r--r-- | httemplate/pref/pref.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/httemplate/pref/pref.html b/httemplate/pref/pref.html index 229ac0e62..069f914ed 100644 --- a/httemplate/pref/pref.html +++ b/httemplate/pref/pref.html @@ -43,6 +43,20 @@ Interface <BR> +Email Address +<% ntable("#cccccc",2) %> + + <TR> + <TH>Email Address(es) (comma separated) </TH> + <TD> + <TD><INPUT TYPE="text" NAME="email_address" VALUE="<% $email_address %>"> + </TD> + </TR> + +</TABLE> +<BR> + + Vonage integration (see <a href="https://secure.click2callu.com/">Click2Call</a>) <% ntable("#cccccc",2) %> @@ -81,5 +95,8 @@ Vonage integration (see <a href="https://secure.click2callu.com/">Click2Call</a> ( $FS::CurrentUser::CurrentUser->option('menu_position') || 'left' ) =~ /^(\w+)$/ or die "illegal menu_position"; my $menu_position = $1; +( $FS::CurrentUser::CurrentUser->option('email_address') ) + =~ /^([,\w\@.]*)$/ or die "illegal email_address"; #too late +my $email_address = $1; </%init> |