Simple booking form plugin sending multiple emails

when we click the submit, 3 emails are sent to the submitter and 3 to the admin?? can anyone help?

below site has all the plugin code

http://pastebin.com/tvCsGF77

or this part if anyone could find out:

//send email

$oggetto .= "Booking request from “. $contactname.” | ".get_the_title();

$headers = ‘MIME-Version: 1.0’ . “\r\n”;
$headers .= ‘Content-type: text/html; charset=iso-8859-1’ . “\r\n”;

// Additional headers

$headers .= ‘From: ‘.get_option(‘blogname’).’ <’.get_option(‘admin_email’).’> ';

// Mail it

mail($contactemail, $oggetto, $email_html, $headers);

mail(get_option(‘admin_email’), $oggetto, $email_html, $headers);

$out.=’

Sponsor our Newsletter | Privacy Policy | Terms of Service