

Please do not hesitate to contact us
with any questions you have about the group, our performances and recordings,
or in regards to auditioning.
General Group E-mail
dynamicsacappella@gmail.com
General Manager
Andrew Rozynski - arozynsk@student.umass.edu
Music Director
Emily Hall - ehall@student.umass.edu

Booking information: The Dynamics
love to sing and spread the joy of singing to others. Because of this,
we offer extremely competitive, flexible rates. For your next party, conference,
wedding, anniversary celebration or other social engagement, consider
hiring an a cappella group! We are available for singing engagements in
the Amherst/Hartford/Boston area throughout the academic year, and tour
around the nation during academic break.


Submit: ".$_POST["submit"]."";
if (!empty($_POST["submit"])) {
process_form();
} else {
draw_form();
}
}
function get_val($varname) {
if (!empty($_POST[$varname])) {
echo $_POST[$varname];
}
}
function get_checked($varname,$value,$default=FALSE) {
if (empty($_POST[$varname]) && $default) {
echo "checked";
} elseif (strtolower($_POST[$varname]) == strtolower($value)) {
echo "checked";
}
}
function get_selected($varname,$value,$default=FALSE) {
if (empty($_POST[$varname]) && $default) {
echo "selected";
} elseif (strtolower($_POST[$varname]) == strtolower($value)) {
echo "selected";
}
}
function draw_form() {
?>
";
$email_headers = "From: $email_from\r\n";
$time = date("h:i:sa d-M-y"); // See 'date' docunmentation at php.org
$error = "";
$success_message = "Thank you. Your information has been received. We
will be in contact shortly.";
// WINDOWS ONLY
// If the webserver is running Windows, uncomment the following two
lines and replace <
> with a
// valid SMTP server address.
// ini_set("SMTP","<>");
// ini_set("sendmail_from",$_POST["Email"]);
$email_body = "A visitor to the website submitted a contact form at
$time with the following information: \r\n";
foreach ($variables as $var) {
if (empty($_POST[$var])) {
$value = "EMPTY";
if (in_array($var,$required)) {
$error .= "$var needs to be filled out.
\n";
}
} else {
$value = $_POST[$var];
}
$email_body .= str_replace("_"," ",$var).": $value\r\n";
}
$email_body .= "\r\n\r\nRemote IP Address: ".$_REQUEST["REMOTE_ADDR"]."\r\n";
if (empty($error)) {
$success = mail($email_to,$email_subject,$email_body,$email_headers);
if ($success) {
echo $success_message;
} else {
echo "An error occured sending your form. We cannot deliver it
at present. Please contact one of us directly by email instead.";
}
} else {
echo "Please correct the following errors, then try again:
$error";
draw_form();
}
}
?>
