We're here for you

Kindly fill out this form to get in touch with us.

SMTPDebug = 0; // Enable verbose debug output $mail1->isSMTP(); // Set mailer to use SMTP $mail1->Host = 'smtp.gmail.com'; // Specify main and backup SMTP servers $mail1->SMTPAuth = true; // Enable SMTP authentication $mail1->Username = 'itruckdispatch@gmail.com'; // SMTP username $mail1->Password = 'oltlihljzfneoajt'; // SMTP password $mail1->SMTPSecure = 'tls'; $mail1->Port = 587; // TCP port to connect to $mail1->setFrom('itruckdispatch@gmail.com', 'iTruck Dispatch'); $mail1->addAddress('dm.itruckdispatch@gmail.com'); // Add a recipient //Content $mail1->isHTML(true); // Set email format to HTML // $mail1->Subject = "Get In Touch"; $mail1->Body = "Name: $fname1 $lname1
\nEmail: $email1
\nPhone: $phone1
\nSubject: $subject1
\nMessage: $message1"; $mail1->send(); echo '

Message sent successfully.

'; } catch (Exception $e) { echo 'Mailer Error: ' . $mail1->ErrorInfo; echo '

Message could not be sent.

'; } } ?>