include_once("class.mail.php"); ?>
|
Subscribe to our Newsletter
$required = 1; $message = ""; if (strlen($_POST['txtName']) <= 2) { $required = 0; $message = $message . "Name is a required field "; } if (strlen($_POST['txtEmail']) <= 5) { $required = 0; $message = $message . "Email is a required field "; } if ($required == 0) { ?> =$message?> } else { $msg_text = "Name: " . $_POST['txtName'] . "\n"; $msg_text = $msg_text . "Country: " . $_POST['txtCountry'] . "\n"; $msg_text = $msg_text . "Email: " . $_POST['txtEmail'] . "\n"; $msg_text = $msg_text . "Phone: " . $_POST['txtPhone'] . "\n"; $msg_text = $msg_text . "Comments: " . $_POST['txtComments'] . "\n"; $mail = new Mail(); $mail->setSubject("Information Request"); $mail->setBody($msg_text); $mail->sendMail(); ?>Message successfully sent. Thank you for your enquiry. For any further information relating to our products and services, please send us your information request via the form on this contact page. We will be pleased to respond to your enquiry and shall do so in a timely manner. The Management Team Switzerland Eurofin Capital SA 4, rue Étraz, PO Box 6003, CH-1002 Lausanne Switzerland Tel: +41 (0)58 710 72 00 Fax: +41 (0)58 710 72 01 United Kingdom Eurofin Capital Limited 66, St James's Street London SW1A 1NE United Kingdom Phone: +44 207 016 3230 Fax: +44 207 016 3231 |