#!/usr/local/bin/perl # ITCS Feedback E-mail script # Match the section acronym passed and presents a form which # users can fill out and mail comments to. Usually the Section Leader # is listed as Point of Contact. Could be a list of multiple e-mail # addresses too. my (%POCHash, %cutename); ################ Read Template FILE here ############################## my $TEMPLATEFILE = qq(contactus.html); open TEMPLATE, $TEMPLATEFILE or die qq(Can't open $TEMPLATEFILE to read: $!\n); undef $/; $TEMPLATE =