Show help.html syntax highlighted
% # vim:set syntax=mason:
<& /mail/header.mhtml, title => "Address List" &>
<p>You may find your answers in the online <a href="<% $base %>/mail/docs/faq/index.html">
documentation.</a></p>
<p>Live help is available from 9am to 5pm Monday through Friday by calling <% $config->get('support_phone', '(no local support)') |h %>,
or by mailing
<a href="<% $base %>/mail/compose.html"><% $config->get('support_email', '(no local support)') |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 = Apache2::SiteControl->getCurrentUser($r);
my $composition = new AlphaMail::Message($user, $config);
$composition->setBody('');
$composition->setAddresses($config->get('support_email', 'root@localhost'),'','');
$composition->setSubject("Alphamail:");
$composition->save();
</%init>
<%once>
use AlphaMail::MailTool qw(mimewords_to_utf8);
use Encode;
our $logger = Log::Log4perl->get_logger('alphamail');
our $base = $config->get('base_uri');
</%once>
See more files for this project here