--- loncom/interface/lonnotify.pm 2010/07/09 14:40:20 1.37 +++ loncom/interface/lonnotify.pm 2012/12/17 15:06:39 1.39 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Sending messages # -# $Id: lonnotify.pm,v 1.37 2010/07/09 14:40:20 raeburn Exp $ +# $Id: lonnotify.pm,v 1.39 2012/12/17 15:06:39 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -705,7 +705,7 @@ ENDSCRIPT ''.&mt('Status').''. ''.&mt('Subject').''. ''.&mt('Message').''. - ''.&mt('Recipents').''. + ''.&mt('Recipients').''. &Apache::loncommon::end_data_table_header_row(); $output .= &Apache::loncommon::start_data_table_row(). ''.&mt('Sent').''. @@ -742,6 +742,7 @@ sub broadcast_email { $msg->to($to); $msg->subject($subject); $msg->add('From',"$from"); + $msg->add('Content-type','text/plain; charset=UTF-8'); if (my $fh = $msg->open()) { print $fh $message; $fh->close;