version 1.1, 2005/08/02 05:03:10
|
version 1.41, 2014/12/11 13:15:35
|
Line 1
|
Line 1
|
|
# The LearningOnline Network with CAPA |
|
# Sending messages |
|
# |
|
# $Id$ |
# |
# |
# Copyright Michigan State University Board of Trustees |
# Copyright Michigan State University Board of Trustees |
# |
# |
Line 27 package Apache::lonnotify;
|
Line 31 package Apache::lonnotify;
|
use strict; |
use strict; |
use Apache::lonnet; |
use Apache::lonnet; |
use Apache::loncommon; |
use Apache::loncommon; |
use Apache::lonsupportreq; |
use Apache::courseclassifier; |
use LONCAPA::Enrollment; |
use LONCAPA::Enrollment; |
use Apache::Constants qw(:common :http); |
use Apache::Constants qw(:common :http); |
use Apache::lonlocal; |
use Apache::lonlocal; |
|
use Mail::Send; |
|
use HTML::TokeParser; |
|
use HTML::Entities; |
|
use lib '/home/httpd/lib/perl/'; |
|
use LONCAPA; |
|
|
sub handler { |
sub handler { |
my ($r) = @_; |
my ($r) = @_; |
Line 40 sub handler {
|
Line 49 sub handler {
|
if ($r->header_only) { |
if ($r->header_only) { |
return OK; |
return OK; |
} |
} |
# my $codedom = $env{'request.role.domain'}; |
my $cdom = $env{'request.role.domain'}; |
my $cdom = 'northwood5'; |
unless (&Apache::lonnet::allowed('psa',$cdom)) { |
unless (&Apache::lonnet::allowed('psa',$env{'request.role.domain'})) { |
|
# Not allowed to broadcast e-mail system-wide |
# Not allowed to broadcast e-mail system-wide |
$env{'user.error.msg'}="/adm/notify:psa:0:0:Cannot broadcast e-mail systemwide"; |
$env{'user.error.msg'}="/adm/notify:psa:0:0:Cannot broadcast e-mail systemwide"; |
return HTTP_NOT_ACCEPTABLE; |
return HTTP_NOT_ACCEPTABLE; |
} |
} |
|
|
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
|
['command']); |
my $command = $env{'form.command'}; |
my $command = $env{'form.command'}; |
|
my $origin = $env{'form.origin'}; |
|
|
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
|
|
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>'/adm/notify', |
({href=>'/adm/notify', |
text=>"Broadcast e-mail"}); |
text=>"Broadcast E-mail"}); |
if ($command eq 'process') { |
if ($command eq 'process') { |
&print_request_receipt($r,$cdom); |
&print_request_receipt($r,$command,$cdom); |
} elsif ($command eq 'compose') { |
} elsif ($command eq 'compose') { |
&print_composition_form($r,$cdom); |
&print_composition_form($r,$command,$cdom); |
|
} elsif ($command eq 'pick_target') { |
|
&print_selection_form($r,$command,$cdom); |
|
} elsif ($command eq 'pick_display') { |
|
&print_display_option_form($r,$command,$cdom); |
|
} elsif ($command eq 'display') { |
|
&print_display($r,$command,$cdom); |
} else { |
} else { |
&print_selection_form($r,$cdom); |
&print_front_page($r,'front',$cdom); |
} |
} |
return OK; |
return OK; |
} |
} |
|
|
|
sub add_script { |
|
my ($js) = @_; |
|
return '<script type="text/javascript">'."\n".$js."\n".'</script>'; |
|
} |
|
|
|
sub start_page { |
|
my ($jscript,$bread_title,$formname) = @_; |
|
|
|
my $loadcode; |
|
if ((defined($env{'form.origin'})) |
|
&& ($env{'form.command'} eq 'compose' |
|
|| $env{'form.command'} eq 'pick_target' |
|
|| $env{'form.command'} eq 'pick_display')) { |
|
if ($env{'form.origin'} ne '') { |
|
$loadcode = 'javascript:setFormElements(document.'.$env{'form.command'}.')'; |
|
if (($env{'form.command'} eq 'pick_target') |
|
&& (($env{'form.origin'} eq 'compose') |
|
|| ($env{'form.origin'} eq 'process'))) { |
|
if ($env{'form.coursepick'} eq 'category') { |
|
$loadcode .= ';javascript:setCourseCat(document.'.$env{'form.command'}.')'; |
|
} |
|
} |
|
} |
|
} |
|
|
|
my $start_page = |
|
&Apache::loncommon::start_page('Broadcast e-mail to users', $jscript, |
|
{'add_entries' => |
|
{'onload' => $loadcode,},}); |
|
my $breadcrumbs = |
|
&Apache::lonhtmlcommon::breadcrumbs($bread_title, |
|
'Broadcast_system_email'); |
|
my $output = <<"ENDONE"; |
|
$start_page |
|
$breadcrumbs |
|
<br /> |
|
<form name="$formname" method="post" action=""> |
|
ENDONE |
|
|
|
return $output; |
|
} |
|
|
|
sub end_page { |
|
return '</form>'.&Apache::loncommon::end_page(); |
|
} |
|
|
|
sub print_front_page { |
|
my ($r,$formname,$cdom) = @_; |
|
|
|
my $jscript = qq| |
|
function next_page(caller) { |
|
if (caller == 'view') { |
|
document.front.command.value="pick_display" |
|
} |
|
else { |
|
document.front.command.value="pick_target" |
|
} |
|
document.front.submit() |
|
} |
|
|; |
|
|
|
|
|
my @menu= |
|
({ categorytitle=>'Broadcast e-mail to Domain', |
|
items =>[ |
|
{ linktext => 'Send e-mail to selected users', |
|
url => 'javascript:next_page('."'new'".')', |
|
permission => 1, |
|
#help => '', |
|
icon => 'mail-reply-all.png', |
|
linktitle => 'Send a new e-mail to selected users from this domain' |
|
}, |
|
{ linktext => 'Display sent e-mails', |
|
url => 'javascript:next_page('."'view'".')', |
|
permission => 1, |
|
#help => '', |
|
icon => 'messalog.png', |
|
linktitle => 'Display e-mail sent by Domain Coordinators in this domain' |
|
}, |
|
] |
|
}, |
|
); |
|
|
|
$r->print( |
|
&start_page(&add_script($jscript), |
|
'Broadcast e-mail to Domain', $formname) |
|
.'<input type="hidden" name="command" />' |
|
.&Apache::lonhtmlcommon::generate_menu(@menu) |
|
.&end_page() |
|
); |
|
return; |
|
} |
|
|
|
sub print_display_option_form { |
|
my ($r,$formname,$cdom) = @_; |
|
&Apache::lonhtmlcommon::add_breadcrumb({text=>"Display options"}); |
|
|
|
my $cmd = 'display'; |
|
my $submit_text = &mt('Display e-mail'); |
|
my @roles = ('dc'); |
|
my $now = time; |
|
|
|
my $startdateform = &Apache::lonhtmlcommon::date_setter($formname, |
|
'startdate', |
|
$now); |
|
my $enddateform = &Apache::lonhtmlcommon::date_setter($formname, |
|
'enddate', |
|
$now); |
|
my %elements = ( |
|
startdate_month => 'selectbox', |
|
startdate_hour => 'selectbox', |
|
enddate_month => 'selectbox', |
|
enddate_hour => 'selectbox', |
|
startdate_day => 'text', |
|
startdate_year => 'text', |
|
startdate_minute => 'text', |
|
startdate_second => 'text', |
|
enddate_day => 'text', |
|
enddate_year => 'text', |
|
enddate_minute => 'text', |
|
enddate_second => 'text', |
|
sender => 'checkbox', |
|
); |
|
my $jscript = &Apache::lonhtmlcommon::set_form_elements(\%elements); |
|
|
|
my $output = &start_page(&add_script($jscript), |
|
'Broadcast e-mail display options', $formname); |
|
|
|
$output .= &Apache::lonhtmlcommon::start_pick_box(); |
|
$output .= &Apache::lonhtmlcommon::row_title(&mt('Date range')); |
|
$output .= '<table><tr><td>'.&mt('Earliest to display:').' </td><td>'. |
|
$startdateform.'</td></tr>'; |
|
$output .= '<tr><td>'.&mt('Latest to display:').' </td><td>'.$enddateform. |
|
'</td></tr></table>'; |
|
$output .= &Apache::lonhtmlcommon::row_closure(); |
|
$output .= &Apache::lonhtmlcommon::row_title(&mt('Choose sender(s)')); |
|
my %personnel = &Apache::lonnet::get_domain_roles($cdom,\@roles); |
|
my @domcc = (); |
|
foreach my $server (keys(%personnel)) { |
|
foreach my $user (sort(keys(%{$personnel{$server}}))) { |
|
my ($trole,$uname,$udom,$runame,$rudom,$rsec) = split(/:/,$user); |
|
unless (grep/^$uname:$udom$/,@domcc) { |
|
my %userinfo = &Apache::lonnet::get('environment',['lastname','firstname'],$udom,$uname); |
|
$output .= '<input type="checkbox" name="sender" value="'.$uname.':'.$udom.'" /> '.$userinfo{'firstname'}.' '.$userinfo{'lastname'}.' ('.$uname.':'.$udom.')'; |
|
push (@domcc,$uname.':'.$udom); |
|
} |
|
} |
|
} |
|
$output .= &Apache::lonhtmlcommon::row_closure(); |
|
$output .= &Apache::lonhtmlcommon::submit_row(&mt('Submit'),$cmd,$submit_text); |
|
$output .= &Apache::lonhtmlcommon::end_pick_box(); |
|
$output .= qq(<input type="hidden" name="sortby" value="date" />\n). |
|
&end_page(); |
|
$r->print($output); |
|
return; |
|
} |
|
|
|
sub print_display { |
|
my ($r,$formname,$cdom) = @_; |
|
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>"javascript:goBack('pick_display')", |
|
text=>"Display options"}, |
|
{text=>"E-mail display"}); |
|
|
|
my $msgcount = 0; |
|
my $start = &Apache::lonhtmlcommon::get_date_from_form('startdate'); |
|
my $end = &Apache::lonhtmlcommon::get_date_from_form('enddate'); |
|
my @senders = &Apache::loncommon::get_env_multiple('form.sender'); |
|
my %sentmail = &Apache::lonnet::dcmaildump($cdom,$start,$end,\@senders); |
|
my %dcmail = (); |
|
my %Sortby = (); |
|
my $jscript = <<"ENDSCRIPT"; |
|
function changeSort(caller) { |
|
document.$formname.command.value = '$formname'; |
|
document.$formname.sortby.value = caller; |
|
document.$formname.submit(); |
|
} |
|
function goBack(target) { |
|
document.$formname.command.value = target; |
|
document.$formname.submit(); |
|
} |
|
|
|
ENDSCRIPT |
|
|
|
my $output = &start_page(&add_script($jscript), |
|
'Display Broadcast e-mail', $formname); |
|
|
|
foreach my $msgid (keys(%sentmail)) { |
|
my %content = &Apache::lonmsg::unpackagemsg($sentmail{$msgid}); |
|
$msgcount ++; |
|
%{$dcmail{$msgid}} = (); |
|
foreach my $item (keys(%content)) { |
|
if ($item eq 'recipient') { |
|
foreach my $user (keys(%{$content{recipient}})) { |
|
$dcmail{$msgid}{recipient}{$user} = $content{recipient}{$user}; |
|
} |
|
} else { |
|
$dcmail{$msgid}{$item} = $content{$item}; |
|
} |
|
} |
|
} |
|
$output .= &Apache::loncommon::start_data_table(); |
|
if ($msgcount > 0) { |
|
$output .= &Apache::loncommon::start_data_table_header_row(). |
|
'<th><a href="javascript:changeSort(\'date\')">'.&mt('Date').'</a></th>'. |
|
'<th><a href="javascript:changeSort(\'subject\')">'.&mt('Subject').'</a></th>'. |
|
'<th><a href="javascript:changeSort(\'sender\')">'.&mt('Sender').'</a></th>'. |
|
'<th><a href="javascript:changeSort(\'message\')">'.&mt('Message').'</a></th>'. |
|
'<th><a href="javascript:changeSort(\'recipients\')">'.&mt('Recipients').'</a></th>'. |
|
&Apache::loncommon::end_data_table_header_row(); |
|
|
|
if (($env{'form.sortby'} eq 'date') || ($env{'form.sortby'} eq '') || (!defined($env{'form.sortby'})) || (($env{'form.sortby'} eq 'sender') && (@senders <= 1))) { |
|
foreach my $msgid (sort(keys(%dcmail))) { |
|
my $recipients = ''; |
|
my ($date,undef,$sname,$sdom) = |
|
&Apache::lonmsg::unpackmsgid($msgid,undef,1); |
|
$date = &Apache::lonlocal::locallocaltime($date); |
|
foreach my $user (sort(keys(%{$dcmail{$msgid}{recipient}}))) { |
|
$recipients .= $dcmail{$msgid}{recipient}{$user}.', '; |
|
} |
|
$recipients =~ s/,\s$//; |
|
$output .= &Apache::loncommon::start_data_table_row(). |
|
'<td><small>'.$date.'</small></td>'. |
|
'<td><small>'.&cr_to_br($dcmail{$msgid}{subject}).'</small></td>'. |
|
'<td><small>'.$sname.':'.$sdom.'</small></td><td><small>'.&cr_to_br($dcmail{$msgid}{message}).'</small></td>'. |
|
'<td><small>'.$recipients.'</small></td>'."\n". |
|
&Apache::loncommon::end_data_table_row(); |
|
} |
|
} else { |
|
foreach my $msgid (sort(keys(%dcmail))) { |
|
my ($date,undef,$sname,$sdom) = |
|
&Apache::lonmsg::unpackmsgid($msgid,undef,1); |
|
if ($env{'form.sortby'} eq 'subject') { |
|
push @{$Sortby{$dcmail{$msgid}{subject}}},$msgid; |
|
} elsif ($env{'form.sortby'} eq 'message') { |
|
push @{$Sortby{$dcmail{$msgid}{message}}},$msgid; |
|
} elsif ($env{'form.sortby'} eq 'recipients') { |
|
my $recipients =''; |
|
foreach my $user (sort(keys(%{$dcmail{$msgid}{recipient}}))) { |
|
$recipients .= $dcmail{$msgid}{recipient}{$user}.', '; |
|
} |
|
$recipients =~ s/,\s$//; |
|
push @{$Sortby{$recipients}},$msgid; |
|
} elsif ($env{'form.sortby'} eq 'sender') { |
|
if (@senders > 1) { |
|
push @{$Sortby{$sname.':'.$sdom}},$msgid; |
|
} |
|
} |
|
} |
|
foreach my $key (sort(keys(%Sortby))) { |
|
foreach my $msgid (@{$Sortby{$key}}) { |
|
my $recipients = ''; |
|
if ($env{'form.sortby'} eq 'recipients') { |
|
$recipients = $key; |
|
} else { |
|
foreach my $user (sort(keys(%{$dcmail{$msgid}{recipient}}))) { |
|
$recipients .= $dcmail{$msgid}{recipient}{$user}.', '; |
|
} |
|
$recipients =~ s/,\s$//; |
|
} |
|
my ($date,undef,$sname,$sdom) = |
|
&Apache::lonmsg::unpackmsgid($msgid,undef,1); |
|
$date = &Apache::lonlocal::locallocaltime($date); |
|
$output .= &Apache::loncommon::start_data_table_row(). |
|
'<td><small>'.$date.'</small></td>'. |
|
'<td><small>'.&cr_to_br($dcmail{$msgid}{subject}).'</small></td>'. |
|
'<td><small>'.$sname.':'.$sdom.'</small></td>'. |
|
'<td><small>'.&cr_to_br($dcmail{$msgid}{message}).'</small></td>'. |
|
'<td><small>'.$recipients.'</small></td>'."\n". |
|
&Apache::loncommon::end_data_table_row(); |
|
} |
|
} |
|
} |
|
} else { |
|
$output .= &Apache::loncommon::start_data_table_empty_row(). |
|
'<td>'.&mt('No mail sent matching supplied criteria').'</td>'. |
|
&Apache::loncommon::end_data_table_empty_row(); |
|
} |
|
$output .= &Apache::loncommon::end_data_table(); |
|
$output .= &Apache::lonhtmlcommon::echo_form_input(['sortby','command','origin']); |
|
my $curr_sortby; |
|
if (defined($env{'form.sortby'})) { |
|
$curr_sortby = $env{'form.sortby'}; |
|
} else { |
|
$curr_sortby = 'date'; |
|
} |
|
$output .= qq(<input type="hidden" name="origin" value="$formname" />\n); |
|
$output .= qq(<input type="hidden" name="command" />\n); |
|
$output .= qq(<input type="hidden" name="sortby" value="$curr_sortby" />\n); |
|
$output .= &end_page(); |
|
$r->print($output); |
|
return; |
|
} |
|
|
sub print_selection_form { |
sub print_selection_form { |
my ($r,$cdom) = @_; |
my ($r,$formname,$cdom) = @_; |
my %coursecodes = (); |
my %coursecodes = (); |
my %codes = (); |
my %codes = (); |
my @codetitles = (); |
my @codetitles = (); |
Line 77 sub print_selection_form {
|
Line 390 sub print_selection_form {
|
my $totcodes = 0; |
my $totcodes = 0; |
my $format_reply; |
my $format_reply; |
my $jscript = ''; |
my $jscript = ''; |
my $loaditems = qq| |
my %lt=&Apache::lonlocal::texthash( |
function initialize_codes() { |
'buil' => 'Building valid e-mail address from username, if missing from preferences:', |
return; |
'kerb' => 'Kerberos: enter default for each realm used in the domain, with comma separation of entries', |
} |
'infs' => 'Internal, Filesystem and Local authentication: enter single default.', |
|; |
'comp' => 'Compose E-mail' |
$totcodes = &Apache::lonsupportreq::retrieve_instcodes(\%coursecodes,$cdom,$totcodes); |
); |
|
&Apache::lonhtmlcommon::add_breadcrumb |
|
({text=>"Select Audience"}); |
|
|
|
$totcodes = &Apache::courseclassifier::retrieve_instcodes(\%coursecodes,$cdom,$totcodes); |
if ($totcodes > 0) { |
if ($totcodes > 0) { |
$format_reply = &Apache::lonnet::auto_instcode_format($caller,$cdom,\%coursecodes,\%codes,\@codetitles,\%cat_titles,\%cat_order); |
$format_reply = &Apache::lonnet::auto_instcode_format($caller,$cdom,\%coursecodes,\%codes,\@codetitles,\%cat_titles,\%cat_order); |
if ($format_reply eq 'ok') { |
if ($format_reply eq 'ok') { |
my $numtypes = @codetitles; |
my $numtypes = @codetitles; |
&Apache::lonsupportreq::build_code_selections(\%codes,\@codetitles,\%cat_titles,\%cat_order,\%idlist,\%idnums,\%idlist_titles); |
&Apache::courseclassifier::build_code_selections(\%codes,\@codetitles,\%cat_titles,\%cat_order,\%idlist,\%idnums,\%idlist_titles); |
&Apache::lonsupportreq::javascript_code_selections($numtypes,\%cat_titles,\$jscript,\%idlist,\%idnums,\%idlist_titles,\@codetitles); |
my ($scripttext,$longtitles) = &Apache::courseclassifier::javascript_definitions(\@codetitles,\%idlist,\%idlist_titles,\%idnums,\%cat_titles); |
$loaditems = ''; |
my $longtitles_str = join('","',@{$longtitles}); |
|
my $allidlist = $idlist{$codetitles[0]}; |
|
$jscript .= &Apache::courseclassifier::courseset_js_start($formname,$longtitles_str,$allidlist); |
|
$jscript .= $scripttext; |
|
$jscript .= &Apache::courseclassifier::javascript_code_selections($formname,@codetitles); |
} |
} |
} |
} |
|
my @standardnames = &Apache::loncommon::get_standard_codeitems(); |
|
|
my $function = &Apache::loncommon::get_users_function(); |
my $cb_jscript = &Apache::loncommon::coursebrowser_javascript($cdom); |
my $tablecolor = &Apache::loncommon::designparm($function.'.tabbg'); |
|
my $bodytag = &Apache::loncommon::bodytag('Broadcast e-mail to users'); |
my %elements = ( |
my $html=&Apache::lonxml::xmlbegin(); |
roles => 'selectbox', |
my $breadcrumbs = &Apache::lonhtmlcommon::breadcrumbs |
types => 'selectbox', |
(undef,'Broadcast e-mail to users','Broadcast_system_email'); |
Year => 'selectbox', |
$r->print(<<ENDONE); |
coursepick => 'radio', |
$html |
coursetotal => 'text', |
<head> |
courselist => 'text', |
<title>LON-CAPA Notification E-mail</title> |
internal => 'text', |
<script type"text/javascript"> |
krb4 => 'text', |
$jscript |
krb5 => 'text', |
</script> |
localauth => 'text', |
</head> |
unix => 'text', |
$bodytag |
); |
$breadcrumbs |
$jscript .= &Apache::lonhtmlcommon::set_form_elements(\%elements); |
<br /> |
if ($env{'form.coursepick'} eq 'category') { |
<form method="post" name="logproblem"> |
$jscript .= qq| |
<table width="580" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000"> |
function setCourseCat(formname) { |
<tr> |
if (formname.Year.options[formname.Year.selectedIndex].value == -1) { |
<td> |
return; |
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#000000"> |
} |
<tr> |
courseSet('$codetitles[0]'); |
<td> |
for (var j=0; j<formname.Semester.length; j++) { |
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#ffffff"> |
if (formname.Semester.options[j].value == "$env{'form.Semester'}") { |
<tr> |
formname.Semester.options[j].selected = true; |
<td> |
} |
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#ffffff"> |
} |
<tr> |
if (formname.Semester.options[formname.Semester.selectedIndex].value == -1) { |
<td width="140" bgcolor="$tablecolor"> |
return; |
<table width="140" border="0" cellpadding="8" cellspacing="0"> |
} |
<tr> |
courseSet('$codetitles[1]'); |
<td align="right"><b>Roles:</b> |
for (var j=0; j<formname.Department.length; j++) { |
</td> |
if (formname.Department.options[j].value == "$env{'form.Department'}") { |
</tr> |
formname.Department.options[j].selected = true; |
</table> |
} |
</td> |
} |
<td width="100%" valign="top"> |
if (formname.Department.options[formname.Department.selectedIndex].value == -1) { |
<table width="100%" border="0" cellpadding="8" cellspacing="0"> |
return; |
<tr> |
} |
<td> |
courseSet('$codetitles[2]'); |
<select name="roles" multiple> |
for (var j=0; j<formname.Number.length; j++) { |
ENDONE |
if (formname.Number.options[j].value == "$env{'form.Number'}") { |
foreach ('cc','in','ta','ep','ad') { |
formname.Number.options[j].selected = true; |
my $plrole=&Apache::lonnet::plaintext($_); |
} |
$r->print(' <option value="'.$_.'">'.$plrole.'</option>'); |
} |
} |
} |
$r->print(<<ENDTWO); |
|; |
</select> |
} |
</td> |
|
</tr> |
|
</table> |
my $output = &start_page(&add_script($jscript).$cb_jscript, |
</td> |
'Choose e-mail audience', $formname); |
</tr> |
|
<tr> |
$output .= &Apache::lonhtmlcommon::start_pick_box(); |
<td width="140" bgcolor="$tablecolor"> |
my @roles = ('ow','cc','in','ta','ep','st','cr'); |
<table width="140" border="0" cellpadding="8" cellspacing="0"> |
my %longtypes = (); |
<tr> |
my %authtypes = (); |
<td align="right"><b>Courses:</b> |
&form_elements(\%longtypes,\%authtypes); |
</td> |
my $descrip = $lt{'buil'}.' |
</tr> |
<ul> |
</table> |
<li>'.$lt{'kerb'}.'<br />(e.g., MSU.EDU=msu.edu, MSUE.EDU=msue.msu.edu).</li> |
</td> |
<li>'.$lt{'infs'}.'</li> |
<td width="100%" valign="top"> |
</ul>'."\n"; |
<table width="100%" border="0" cellpadding="8" cellspacing="0"> |
my $submit_text = $lt{'comp'}; |
<tr> |
my $cmd = 'compose'; |
<td> |
$output .= &Apache::lonhtmlcommon::role_select_row(\@roles,&mt('Roles')); |
ENDTWO |
$output .= &Apache::lonhtmlcommon::course_select_row(&mt('Courses'),$formname,$totcodes,\@codetitles,\%idlist,\%idlist_titles,undef,undef,\@standardnames); |
if ($totcodes > 0) { |
$output .= &Apache::lonhtmlcommon::status_select_row(\%longtypes,&mt('Access status')); |
my $numtitles = @codetitles; |
$output .= &Apache::lonhtmlcommon::email_default_row(\%authtypes,&mt('Username -> E-mail conversion'),$descrip); |
if ($numtitles == 0) { |
$output .= &Apache::lonhtmlcommon::submit_row(&mt('Submit'),$cmd,$submit_text); |
$r->print('No institutional course code categories found.<br />Can not select courses to receive e-mail.'); |
$output .= &Apache::lonhtmlcommon::end_pick_box(); |
} else { |
$output .= &end_page(); |
$r->print('<table><tr><td>'.$codetitles[0].'<br />'."\n". |
$r->print($output); |
'<select name="'.$codetitles[0]. |
|
'" onChange="courseSet('."'$codetitles[0]'".')">'."\n". |
|
' <option value="-1" />Select'."\n"); |
|
my @items = (); |
|
my @longitems = (); |
|
if ($idlist{$codetitles[0]} =~ /","/) { |
|
@items = split/","/,$idlist{$codetitles[0]}; |
|
} else { |
|
$items[0] = $idlist{$codetitles[0]}; |
|
} |
|
if (defined($idlist_titles{$codetitles[0]})) { |
|
if ($idlist_titles{$codetitles[0]} =~ /","/) { |
|
@longitems = split/","/,$idlist_titles{$codetitles[0]}; |
|
} else { |
|
$longitems[0] = $idlist_titles{$codetitles[0]}; |
|
} |
|
for (my $i=0; $i<@longitems; $i++) { |
|
if ($longitems[$i] eq '') { |
|
$longitems[$i] = $items[$i]; |
|
} |
|
} |
|
} else { |
|
@longitems = @items; |
|
} |
|
for (my $i=0; $i<@items; $i++) { |
|
$r->print(' <option value="'.$items[$i].'">'.$longitems[$i].'</option>'); |
|
} |
|
$r->print('</select></td>'); |
|
for (my $i=1; $i<$numtitles; $i++) { |
|
$r->print('<td>'.$codetitles[$i].'<br />'."\n". |
|
'<select name="'.$codetitles[$i]. |
|
'" onChange="courseSet('."'$codetitles[$i]'".')">'."\n". |
|
'<option value="-1"><-Pick '.$codetitles[$i-1].'</option>'."\n". |
|
'</select>'."\n". |
|
'</td>' |
|
); |
|
} |
|
$r->print('</tr></table>'); |
|
} |
|
} |
|
$r->print(<<END); |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
</tr> |
|
<tr> |
|
<td width="140" bgcolor="$tablecolor"> |
|
<table width="140" border="0" cellpadding="8" cellspacing="0"> |
|
<tr> |
|
<td align="right"><b>Submit:</b> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
<td width="100%" valign="top" align="right"> |
|
<br /> |
|
<input type="hidden" name="command" value="compose" /> |
|
<input type="submit" value="Compose Message"/> |
|
<br /><br /> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
</tr> |
|
</table> |
|
</form> |
|
</body> |
|
</html> |
|
END |
|
return; |
return; |
} |
} |
|
|
sub print_composition_form { |
sub print_composition_form { |
my ($r,$cdom) = @_; |
my ($r,$formname,$cdom) = @_; |
my $function = &Apache::loncommon::get_users_function(); |
|
my $tablecolor = &Apache::loncommon::designparm($function.'.tabbg'); |
|
my $bodytag = &Apache::loncommon::bodytag('Broadcast e-mail to users'); |
|
my $html=&Apache::lonxml::xmlbegin(); |
|
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>'/adm/notify?command=compose', |
({href=>"javascript:goBack('pick_target')", |
text=>"Compose Message"}); |
text=>"Select Audience"}, |
my $jscript = <<"END"; |
{text=>"Compose E-mail"}); |
function checkAll(field) { |
my $jscript = &Apache::loncommon::check_uncheck_jscript(); |
if (field.length > 0) { |
$jscript .= qq| |
for (i = 0; i < field.length; i++) { |
function goBack(target) { |
field[i].checked = true ; |
document.$formname.command.value = target; |
} |
document.$formname.submit(); |
} else { |
|
field.checked = true |
|
} |
|
} |
} |
|
|; |
function uncheckAll(field) { |
|
if (field.length > 0) { |
my %lt=&Apache::lonlocal::texthash( |
for (i = 0; i < field.length; i++) { |
'nore' => 'No recipients identified', |
field[i].checked = false ; |
'emad' => 'e-mail address', |
} } else { |
); |
field.checked = false ; |
my %elements = ( |
} |
subject => 'text', |
} |
message => 'text', |
END |
sender => 'text', |
my $breadcrumbs = (&Apache::lonhtmlcommon::breadcrumbs |
recipient => 'checkbox', |
(undef,'Broadcast e-mail to users','Broadcast_system_email')); |
); |
|
$jscript .= &Apache::lonhtmlcommon::set_form_elements(\%elements); |
$r->print(<<ENDONE); |
|
$html |
$r->print(&start_page(&add_script($jscript), |
<head> |
'Broadcast e-mail to users', $formname)); |
<title>LON-CAPA Notification E-mail</title> |
|
<script type"text/javascript"> |
my $coursefilter = $env{'form.coursepick'}; |
$jscript |
my %courses; |
</script> |
if ($coursefilter eq 'all') { |
</head> |
%courses = &Apache::lonnet::courseiddump($cdom,'.','.','.','.','.', |
$bodytag $breadcrumbs |
undef,undef,'Course'); |
<br /> |
} elsif ($coursefilter eq 'category') { |
ENDONE |
my $instcode = &Apache::courseclassifier::instcode_from_selectors($cdom); |
my $instcode = ''; |
my $regexp = ''; |
my @cats = ('Semester','Year','Department','Number'); |
if ($instcode eq '') { |
foreach my $category (@cats) { |
$instcode = '.'; |
if (defined($env{'form.'.$category})) { |
} else { |
unless ($env{'form.'.$category} eq '-1') { |
$regexp = 1; |
$instcode .= $env{'form.'.$category}; |
} |
|
%courses = &Apache::lonnet::courseiddump($cdom,'.','.',$instcode,'.','.', |
|
undef,undef,'Course',$regexp); |
|
} elsif ($coursefilter eq 'specific') { |
|
if ($env{'form.coursetotal'} > 1) { |
|
my @course_ids = split(/&&/,$env{'form.courselist'}); |
|
foreach my $cid (@course_ids) { |
|
$courses{$cid} = ''; |
} |
} |
|
} else { |
|
$courses{$env{'form.courselist'}} = ''; |
} |
} |
} |
} |
if ($instcode eq '') { |
|
$instcode = '.'; |
my @types = &Apache::loncommon::get_env_multiple('form.types'); |
} |
|
my %courses = &Apache::lonnet::courseiddump($cdom,'.','.',$instcode,'.','.'); |
|
my @roles = &Apache::loncommon::get_env_multiple('form.roles'); |
my @roles = &Apache::loncommon::get_env_multiple('form.roles'); |
|
|
|
my %longtypes = (); |
|
my %authtypes = (); |
|
my %email_defaults = (); |
|
|
|
&form_elements(\%longtypes,\%authtypes); |
|
foreach my $auth (keys(%authtypes)) { |
|
if (exists($env{'form.'.$auth})) { |
|
my $default = $env{'form.'.$auth}; |
|
$default =~ s/^,+//; |
|
$default =~ s/,+$//; |
|
if ($auth =~ /^krb/) { |
|
%{$email_defaults{$auth}} = (); |
|
if ($default =~ /,/) { |
|
my @items = split(/,/,$default); |
|
foreach my $item (@items) { |
|
my ($realm,$value) = split(/=/,$item); |
|
$email_defaults{$auth}{$realm} = $value; |
|
} |
|
} else { |
|
my ($realm,$value) = split(/=/,$default); |
|
$email_defaults{$auth}{$realm} = $value; |
|
} |
|
} else { |
|
$email_defaults{$auth} = $default; |
|
} |
|
} |
|
} |
|
|
|
my $sender = &get_user_info($env{'user.name'},%email_defaults); |
|
|
my %recipients = (); |
my %recipients = (); |
foreach my $course_id (keys %courses) { |
my %users = (); |
&get_active_users($course_id,\@roles,\%recipients); |
my %access = (); |
|
my @sections = (); |
|
my $totalrecip = 0; |
|
my @unmatched = (); |
|
foreach my $role (@roles) { |
|
%{$users{$role}} = (); |
|
} |
|
foreach my $type (@types) { |
|
$access{$type} = $type; |
|
} |
|
foreach my $course_id (keys(%courses)) { |
|
my %coursehash = |
|
&Apache::lonnet::coursedescription($course_id,{'one_time' => 1}); |
|
my $cdom = $coursehash{'domain'}; |
|
my $cnum = $coursehash{'num'}; |
|
&Apache::loncommon::get_course_users($cdom,$cnum,\%access,\@roles,\@sections,\%users); |
|
} |
|
foreach my $role (keys(%users)) { |
|
foreach my $user (keys(%{$users{$role}})) { |
|
unless (defined($recipients{$user})) { |
|
$recipients{$user} = &get_user_info($user,%email_defaults); |
|
if ($recipients{$user} eq '') { |
|
push @unmatched, $user; |
|
} else { |
|
$totalrecip ++; |
|
} |
|
} |
|
} |
} |
} |
if (%recipients) { |
my $output; |
$r->print('<form name="compose" method="post"> |
|
<input type="hidden" command="process" /> |
if ($totalrecip > 0) { |
<table width="580" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000"> |
$output .= &Apache::lonhtmlcommon::start_pick_box(); |
<tr> |
$output .= &Apache::lonhtmlcommon::row_title(&mt('Subject')); |
<td> |
$output .= '<input type="text" name="subject" size="30" />'; |
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#000000"> |
$output .= &Apache::lonhtmlcommon::row_closure(); |
<tr> |
$output .= &Apache::lonhtmlcommon::row_title(&mt('Message')); |
<td> |
$output .= ' <textarea name="message" id="message" |
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#ffffff"> |
cols="60" rows="10" wrap="hard"></textarea>'; |
<tr> |
$output .= &Apache::lonhtmlcommon::row_closure(); |
<td> |
$output .= &Apache::lonhtmlcommon::row_title(&mt('Recipients')); |
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#ffffff"> |
$output .= '<input type="button" value="check all" |
<tr> |
onclick="javascript:checkAll(document.compose.recipient)" /> |
<td width="140" bgcolor="'.$tablecolor.'"> |
<input type="button" value="uncheck all" |
<table width="140" border="0" cellpadding="8" cellspacing="0"> |
onclick="javascript:uncheckAll(document.compose.recipient)" /> |
<tr> |
<br />'; |
<td align="right"><b>Subject:</b> |
$output .= &Apache::loncommon::start_data_table(); |
</td> |
if (keys(%recipients) > 0) { |
</tr> |
$output .= &Apache::loncommon::start_data_table_header_row(); |
</table> |
$output .= '<th> <th>username:domain</th><th>'.$lt{'emad'}.'</th>'; |
</td> |
$output .= &Apache::loncommon::end_data_table_header_row(); |
<td width="100%" valign="top"> |
} |
<table width="100%" border="0" cellpadding="8" cellspacing="0"> |
foreach my $username (sort(keys(%recipients))) { |
<tr> |
$output .= &Apache::loncommon::start_data_table_row(); |
<td><input type="text" name="subject" size="30" /> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
</tr> |
|
<tr> |
|
<td width="140" bgcolor="'.$tablecolor.'"> |
|
<table width="140" border="0" cellpadding="8" cellspacing="0"> |
|
<tr> |
|
<td align="right">Message:</td> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
<td width="100%" valign="top"> |
|
<table width="100%" border="0" cellpadding="8" cellspacing="0"> |
|
<tr> |
|
<td> |
|
<textarea name="message" id="message" |
|
cols="60" rows="10" wrap="hard"></textarea> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
</tr> |
|
<tr> |
|
<td width="140" bgcolor="'.$tablecolor.'"> |
|
<table width="140" border="0" cellpadding="8" cellspacing="0"> |
|
<tr> |
|
<td align="right"><b>Recipients:</b> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
<td width="100%" valign="top"> |
|
<table width="100%" border="0" cellpadding="8" cellspacing="0"> |
|
<tr> |
|
<td> |
|
<input type="button" value="check all" |
|
onclick="javascript:checkAll(document.compose.email)" /> |
|
<input type="button" value="uncheck all" |
|
onclick="javascript:uncheckAll(document.compose.email)" /><br /> |
|
<table border="0">'); |
|
foreach my $username (sort keys %recipients) { |
|
if ($recipients{$username} =~ /\@/) { |
if ($recipients{$username} =~ /\@/) { |
my $value=&Apache::lonnet::escape($username).':'.&Apache::lonnet::escape($recipients{$username}); |
my $value=&escape($username).':'.&escape($recipients{$username}); |
$r->print('<tr><td><input type="checkbox" name="email" value="'.$value.'" checked="checked" /></td><td>'.$username.'</td><td>'.$recipients{$username}.'</td></tr>'); |
$output .= '<td><input type="checkbox" name="recipient" value="'.$value.'" /></td><td>'.$username.'</td><td>'.$recipients{$username}.'</td>'; |
$numrecep ++; |
} |
} |
$output .= &Apache::loncommon::end_data_table_row(); |
} |
} |
$r->print(' |
$output .= &Apache::loncommon::end_data_table(); |
</table> |
if (@unmatched) { |
</td> |
$output .= '<br /><br />'.&mt('Could not determine e-mail addresses for the following users:').'<ul>'; |
</tr> |
foreach my $username (sort(@unmatched)) { |
</table> |
$output .= '<li>'.$username.'</li>'; |
</td> |
} |
</tr> |
$output .= '</ul>'; |
<tr> |
} |
<td width="140" bgcolor="'.$tablecolor.'"> |
$output .= &Apache::lonhtmlcommon::row_closure(); |
<table width="140" border="0" cellpadding="8" cellspacing="0"> |
$output .= &Apache::lonhtmlcommon::row_title(&mt('Sender e-mail address')); |
<tr> |
$output .= '<input type="text" name="sender" value="'.$sender.'" />'; |
<td align="right"><b>Submit:</b> |
$output .= &Apache::lonhtmlcommon::row_closure(); |
</td> |
$output .= &Apache::lonhtmlcommon::submit_row(&mt('Submit'),'process',&mt('Send')); |
</tr> |
$output .= &Apache::lonhtmlcommon::end_pick_box(); |
</table> |
|
</td> |
|
<td width="100%" valign="top" align="right"> |
|
<br /> |
|
<input type="hidden" name="command" value="compose" /> |
|
<input type="submit" name="sendemail" value="Send Message"/> |
|
<br /><br /> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
</tr> |
|
</table> |
|
</form>'); |
|
} else { |
} else { |
$r->print('No recipients identified'); |
$output .= $lt{'nore'}."\n". |
|
'<input type="hidden" name="command" value="" />'."\n"; |
} |
} |
$r->print('</body></html>'); |
$output .= '<input type="hidden" name="origin" value="'.$formname.'" />'."\n"; |
|
$output .= &Apache::lonhtmlcommon::echo_form_input(['command','origin','subject','message','recipient','sender'],); |
|
$output .= &end_page(); |
|
$r->print($output); |
return; |
return; |
} |
} |
|
|
|
|
sub print_request_receipt { |
sub print_request_receipt { |
my ($r,$dom) =@_; |
my ($r,$formname,$dom) =@_; |
my @recipients = &Apache::loncommon::get_env_multiple('recipients'); |
my @recipients = &Apache::loncommon::get_env_multiple('form.recipient'); |
my $subject = $env{'form.subject'}; |
my $subject = $env{'form.subject'}; |
my $message = $env{'form.message'}; |
my $message = $env{'form.message'}; |
my $function = &Apache::loncommon::get_users_function(); |
my $from = $env{'form.sender'}; |
my $tablecolor = &Apache::loncommon::designparm($function.'.tabbg'); |
my $jscript = <<ENDSCRIPT; |
my $bodytag = &Apache::loncommon::bodytag('Broadcast e-mail to users'); |
function goBack(target) { |
my $html=&Apache::lonxml::xmlbegin(); |
document.$formname.command.value = target; |
my $jscript; |
document.$formname.submit(); |
my $breadcrumbs = &Apache::lonhtmlcommon::breadcrumbs |
} |
(undef,'Broadcast e-mail to users','Broadcast_system_email'); |
ENDSCRIPT |
$r->print(<<ENDONE); |
|
$html |
&Apache::lonhtmlcommon::add_breadcrumb |
<head> |
({href=>"javascript:goBack('pick_target')", |
<title>LON-CAPA Notification E-mail</title> |
text=>"Select audience"}); |
<script type"text/javascript"> |
&Apache::lonhtmlcommon::add_breadcrumb |
$jscript |
({href=>"javascript:goBack('compose')", |
</script> |
text=>"Compose E-mail"}); |
</head> |
&Apache::lonhtmlcommon::add_breadcrumb |
$bodytag |
({href=>"/adm/notify?command=process", |
$breadcrumbs |
text=>"Outcome"}); |
ENDONE |
|
$r->print($subject.'<br /><br />'); |
|
$r->print($message.'<br /><br />'); |
my $output = &start_page(&add_script($jscript), 'E-mail Delivery', |
foreach my $person (@recipients) { |
$formname); |
my ($username,$email) = split/:/,$person; |
|
$r->print('user: '.&Apache::lonnet::unescape($username).' email: '.&Apache::lonnet::unescape($email).'<br />'); |
|
|
my @deliveries = (); |
|
&broadcast_email(\@recipients,$subject,$from,$message,\@deliveries); |
|
if (@deliveries > 0) { |
|
$output .= &Apache::loncommon::start_data_table(); |
|
&store_mail($subject,$message,$dom,\@deliveries); |
|
$output .= &Apache::loncommon::start_data_table_header_row(). |
|
'<th>'.&mt('Status').'</th>'. |
|
'<th>'.&mt('Subject').'</th>'. |
|
'<th>'.&mt('Message').'</th>'. |
|
'<th>'.&mt('Recipients').'</th>'. |
|
&Apache::loncommon::end_data_table_header_row(); |
|
$output .= &Apache::loncommon::start_data_table_row(). |
|
'<td valign="middle">'.&mt('Sent').'</td>'. |
|
'<td valign="middle">'.&cr_to_br($subject).'</td>'. |
|
'<td valign="middle">'.&cr_to_br($message).'</td>'. |
|
'<td>'; |
|
foreach my $person (@deliveries) { |
|
my ($username,$email) = split(/:/,$person); |
|
$output .= &unescape($email).' ('.&unescape($username).')<br />'."\n"; |
|
} |
|
$output .= '</td>'. |
|
&Apache::loncommon::end_data_table_row(). |
|
&Apache::loncommon::end_data_table(); |
|
} else { |
|
$output .= &mt('No mail sent - no recipients identified'); |
} |
} |
|
$output .= '<br /><a href="/adm/notify">'.&mt('Send another e-mail').'</a>'."\n"; |
|
$output .= '<input type="hidden" name="command" />'."\n". |
|
'<input type="hidden" name="origin" value="'.$formname.'" />'."\n"; |
|
$output .= &Apache::lonhtmlcommon::echo_form_input(['command','origin']); |
|
$output .= &end_page(); |
|
$r->print($output); |
return; |
return; |
} |
} |
|
|
sub get_active_users { |
sub broadcast_email { |
my ($course_id,$roles,$recipients) = @_; |
my ($recipients,$subject,$from,$message,$deliveries)=@_; |
if (@{$roles} > 0) { |
# Should implement staggered delivery for large numbers of recipients?. |
my ($cdom,$cnum) = split/_/,$course_id; |
foreach my $user (@{$recipients}) { |
my @coursepersonnel = &Apache::lonnet::getkeys('nohist_userroles',$cdom,$cnum); |
my $msg = new Mail::Send; |
foreach my $person (@coursepersonnel) { |
my ($username,$to) = split(/:/,$user); |
my ($role,$user) = ($person =~ /^([^:]*):(.+)$/); |
$username = &unescape($username); |
if (($role) && (grep/^$role$/,@{$roles})) { |
$to = &unescape($to); |
unless (exists($$recipients{$user})) { |
$msg->to($to); |
my ($uname,$udom) = split/:/,$user; |
$msg->subject($subject); |
if ($uname ne '' && $udom ne '') { |
$msg->add('From',"$from"); |
if (&LONCAPA::Enrollment::check_user_status($udom,$uname,$cdom,$cnum,$role) eq 'ok') { |
$msg->add('Content-type','text/plain; charset=UTF-8'); |
my %userinfo = &Apache::lonnet::get('environment',['permanenetemail','notification','critnotification',],$udom,$uname); |
if (my $fh = $msg->open()) { |
my @emailtypes = ('permanentemail','critnotification','notification'); |
print $fh $message; |
my $email = ''; |
$fh->close; |
foreach (@emailtypes) { |
push(@{$deliveries},$user); |
$email = $userinfo{$_}; |
} |
if ($email =~ /\@/) { |
} |
last; |
} |
} |
|
} |
sub get_user_info { |
if ($email eq '') { |
my ($user,%email_defaults) = @_; |
my $authinfo = &Apache::lonnet::queryauthenticate($uname,$udom); |
my ($uname,$udom) = split(/:/,$user); |
my ($authtype,$autharg) = split/:/,$authinfo; |
my @emailtypes = ('permanentemail','critnotification','notification'); |
if (($authtype =~ /^krb/) && ($autharg =~ /^MSU/)) { |
my %userinfo = &Apache::loncommon::getemails($uname,$udom); |
$email = $uname.'@msu.edu'; |
my $email = ''; |
} |
foreach my $type (@emailtypes) { |
} |
$email = $userinfo{$type}; |
$$recipients{$user} = $email; |
if ($email =~ /\@/) { |
} |
last; |
} |
} |
} |
} |
|
if ($email eq '') { |
|
my $authinfo = &Apache::lonnet::queryauthenticate($uname,$udom); |
|
my ($authtype,$autharg) = split(/:/,$authinfo); |
|
if ($authtype =~ /^krb/) { |
|
if (defined($email_defaults{$authtype}{$autharg})) { |
|
$email = $uname.'@'.$email_defaults{$authtype}{$autharg}; |
|
} |
|
} else { |
|
if ((defined($email_defaults{$authtype})) && ($email_defaults{$authtype} ne '')) { |
|
$email = $uname.'@'.$email_defaults{$authtype}; |
} |
} |
} |
} |
} |
} |
|
return $email; |
|
} |
|
|
|
sub form_elements { |
|
my ($longtypes,$authtypes) = @_; |
|
%{$longtypes} = ( |
|
active => &mt('Currently has access'), |
|
previous => &mt('Previously had access'), |
|
future => &mt('Will have future access'), |
|
); |
|
%{$authtypes} = ( |
|
krb4 => 'Kerberos 4', |
|
krb5 => 'Kerberos 5', |
|
internal => 'Internal (LON-CAPA)', |
|
unix => 'Filesystem (UNIX)', |
|
localauth => 'Local/Customized', |
|
); |
|
return; |
|
} |
|
|
|
sub store_mail { |
|
my ($subject,$message,$domain,$recipients,$attachmenturl) = @_; |
|
my $msgid; |
|
($msgid,$message) = &Apache::lonmsg::packagemsg($subject,$message,undef,undef, |
|
$attachmenturl,$recipients,undef,undef,'dcmail'); |
|
|
|
# Store in dc email db files on primary library server for domain. |
|
my $server = &Apache::lonnet::domain($domain,'primary'); |
|
if (defined($server)) { |
|
unless (&Apache::lonnet::dcmailput($domain,$msgid,$message,$server) |
|
eq 'ok') { |
|
&Apache::lonnet::logthis('Storage of dc mail failed for domain'. |
|
$domain.' for server: '. $server.'. Message ID was '.$msgid); |
|
} |
|
} else { |
|
&Apache::lonnet::logthis('Storage of dc mail failed for domain'. |
|
$domain.' as no primary server identified. Message ID was '.$msgid); |
|
} |
|
} |
|
|
|
sub cr_to_br { |
|
my $incoming = shift; |
|
$incoming =~ s/\n/\<br \/\>/g; |
|
return $incoming; |
} |
} |
|
|
1; |
1; |