require_once("includes/form-helpers.inc.php");
$bFormWasSubmitted = isset($_POST["email"]);
if($bFormWasSubmitted) //lets process form and send email
{
$lname = $_POST["lname"];
$fname = $_POST["fname"];
$email = $_POST["email"];
$product = $_POST["product"];
$order_status = $_POST["order_status"];
$category = $_POST["category"];
$code = $_POST["code"];
$os = $_POST["os"];
$subject = $_POST["subject"];
$message = $_POST["message"];
//lets choose support email
$support_email = guessSupportEmailByProductShortName($product);
//create external support (ticket) number. We don't neet, but it will help custmer to feel his importance
$ticketNumber = date("ymdhms");
//lets build message body:
$body .= "# ".$ticketNumber."\r\n";
$body .= $fname . " " . $lname . "\r\n".$email."\r\n".$product." ".$order_status." ".$code." \r\n".$os."\r\n\r\n".$category."\r\n".$subject."\r\n".$message;
//lets send email to our support team
$subject = (strlen($subject)==0)? $category." Message thru support form" : $category." ".$subject;
sendEMail($email, $support_email, $subject, $body);
//$headers = "From: ".$email."\r\n"."Reply-To: ".$_POST['email']." \r\nX-Mailer: PHP/".phpversion();
//@mail($support_email, $subject, $body, $headers);
//~lets send email to our support team
//lets send autorespond email to customer
$autoResponderText = "Thanks for contacting ".$product." Support Team!\r\n";
$autoResponderText .= "Your request has been received and a unique ID has been assigned to your case: ".$ticketNumber.". You may use this support case ID as a reference when contacting us again.\r\n\r\n";
$autoResponderText .= "Normally you will receive a reply to your query immediately after reading this e-mail or in a few hours (this depends on current ".$product." Support Team workload). In rare circumstances you'll get a response within 24 hours.\r\n\r\n";
$autoResponderText .= "If you haven't received a reply from us within this time frame, please check your spam folder. In some cases, emails from the ".$product." Support Team get caught by the spam filter.\r\n\r\n";
$autoResponderText .= "We do our best to respond to you as quickly as possible. It's our aim to provide you with the best quality assistance: professional and prompt.\r\n\r\n";
$autoResponderText .= "In the meantime you are welcome to visit Wiki for product guides, step-by-step manuals and general knowledge base:\r\n";
$autoResponderText .= "http://wiki.soundtaxi.info\r\nIt's fast and easy!\r\nThank you for being our Customer.\r\n\r\n";
$subject = "Re: ".$subject." [request # ".$ticketNumber." received confirmation]";
sendEMail($support_email, $email, $subject, $autoResponderText);
//$headers = "From: ".$support_email."\r\n"."Reply-To: ".$support_email." \r\nX-Mailer: PHP/".phpversion();
//@mail($email, $subject, $autoResponderText, $headers);
}
?>
Contact SoundTaxi support team. Our specialist will contact you soon again.
Easily convert your DRM protected and any non-protected music and movie files toMP3, M4A (iPod), WMA or WAV (audio) and MP4, AVI (DivX) or WMV (video) at high speed and CD quality - legally.
Please send us a message via the online form, and our support team will answer you within 1-2 days. But in most cases you'll get our response in a few hours or immediately
Please try to fill in as many fields as possible and provide any other additional information in the final comments field.
This will help us to answer any questions and resolve any problems faster.
Where can I find my license code?
It was sent to you by email immediately after purchase. And you can restore your license code here.
Do I need to re-download software after purchase if I have installed the trial?
No, please activate the software using your license code you have received during the purchase.
If I reinstall my Windows will your software work?
Yes, please use your license code while reinstalling our software or write to support and we will assist you ASAP.
* – required fields
Our goal is to personally answer your email as soon as possible.
} //~if(!$bFormWasSubmitted)
else //say thank you for enquire
{
?>
Thank you very much for your time. Support specialist will contact you nearest time.
Please add email address: echo($support_email); ?> as exception to your spam filter to ensure delivery of support email.