Show help.html syntax highlighted
% # vim:set syntax=mason:
<& /mail/header.mhtml, title => "Address List" &>
<p>Help is available from 9am to 5pm Monday through Friday by calling <% $config->get('support_phone', '346-1758') |h %>,
or by mailing
<a href="/mail/compose.html"><% $config->get('support_email', 'consult@uoregon.edu') |h %></a>. Please report any bugs with as much detail as possible, so we can eliminate them from the system.
<& /mail/footer.mhtml &>
<%init>
my $user = Apache::SiteControl->getCurrentUser($r);
my $composition = new AlphaMail::Message($user, $config);
$composition->setBody('');
$composition->setAddresses($config->get('support_email', 'consult@uoregon.edu'),'','');
$composition->setSubject("Alphamail:");
$composition->save();
</%init>
<%once>
use AlphaMail::MailTool qw(mimewords_to_utf8);
use AlphaMail::Message;
use Encode;
</%once>
See more files for this project here