|
||||||||||||||
Careers If you are an innovative thinker with passion for solving complex technical problems in the field of optical systems we would like to hear from you. Please send us your resume (curriculum vitae) outlining experience, education and accomplishments and we will talk to you. error_reporting(0); function show_form() { ?> Field for the applicants to send their inquiries and resumes: } function complete_mail() { $empty_input[] = 'First name:'; $empty_input[] = 'Last name:'; $empty_input[] = 'E-mail adress:'; $empty_input[] = 'Phone number (please include your country code):'; $empty_input[] = 'Company:'; $empty_input[] = 'Country/State:'; $empty_input[] = 'Subject:'; $empty_input[] = 'Comments (maximum 2000 characters)'; $empty_input[] = ''; for ($i=0; $i'; $mess .= 'Last name:: '.$_POST['input_name'][1].' '; $mess .= 'E-mail adress:: '.$_POST['input_name'][2].' '; $mess .= 'Phone number (please include your contry code):: '.$_POST['input_name'][3].' '; $mess .= 'Company:: '.$_POST['input_name'][5].' '; $mess .= 'Country/State:: '.$_POST['input_name'][6].' '; $mess .= 'Subject:: '.$_POST['input_name'][7].' '; $mess .= 'Comments (maximum 2000 characters): '.$_POST['input_name'][8].' '; $mess .= ': '.$_POST['input_name'][10].' '; require 'class.phpmailer.php'; $mail = new PHPMailer(); $mail->From = ''; $mail->FromName = 'ITSWorld'; $mail->AddAddress('info@itsworldgmbh.com', 'ITSWorld'); $mail->AddAddress('onvlasov@yahoo.com', 'Oleg Vlasov'); $mail->IsHTML(true); $mail->Subject = 'New message'; $mail->Body = $mess; if(isset($_FILES['file_name'])) { if($_FILES['file_name']['error'][0] == 0){ $mail->AddAttachment($_FILES['file_name']['tmp_name'][0], $_FILES['file_name']['name'][0]); } } if($sendemail != 'No'){ if (!$mail->Send()) die ('Mailer Error: '.$mail->ErrorInfo); echo 'Your email has been sent.'; } } if (!empty($_POST['submit'])) complete_mail(); else show_form(); ?>
|