Contact Us

Need any help?

Get in touch with us

Website:- www.stormnet.in
Email Us:- info@stormnet.in
Help desk no:- 03366326108
Mobile no:- 8900571416
Corporate office:- Bargachia (Mondal Market) , Howrah, 711404
Registered office:- Sadatpur Bazar, Mansinghapur, Howrah, 711404
Stormnet Connect Private Limited Contact form details '.date('F j, Y, g:i:s a').'
Name : '.stripslashes($_POST['cust_name']).'
E-Mail : '.stripslashes($_POST['emailid']).'
Phone : '.stripslashes($_POST['phone']).'
Message : '.stripslashes($_POST['message']).'
'; $IsMailType='SMTP'; $SmtpHost = SMTP_HOST; // sets the SMTP server $SmtpDebug = 0; // enables SMTP debug information (for testing) $SmtpAuthentication = true; // enable SMTP authentication $SmtpPort = SMTP_PORT; // set the SMTP port for the GMAIL server $SmtpUsername = SMTP_USERNAME; // SMTP account username $SmtpPassword = SMTP_PASSWORD; // SMTP account password if ( $IsMailType == "SMTP" ) { $mail->IsSMTP(); // telling the class to use SMTP $mail->SMTPDebug = $SmtpDebug; $mail->SMTPAuth = $SmtpAuthentication; // enable SMTP authentication $mail->Port = $SmtpPort; // set the SMTP port $mail->Host = $SmtpHost; // SMTP server $mail->Username = $SmtpUsername; // SMTP account username $mail->Password = $SmtpPassword; // SMTP account password } elseif ( $IsMailType == "mail" ) { $mail->IsMail(); // telling the class to use PHP's Mail() } elseif ( $IsMailType == "sendmail" ) { $mail->IsSendmail(); // telling the class to use Sendmail } elseif ( $IsMailType == "qmail" ) { $mail->IsQmail(); // telling the class to use Qmail } if ( $MailFromName != '' ) { $mail->AddReplyTo($MailFrom,$MailFromName); $mail->From = $MailFrom; $mail->FromName = $MailFromName; } else { $mail->AddReplyTo($MailFrom); $mail->From = $MailFrom; $mail->FromName = $MailFrom; } if ( $MailToName != '' ) { $mail->AddAddress($MailTo,$MailToName); } else { $mail->AddAddress($MailTo); } //$mail->AddBCC('pay2b@rediffmail.com'); $mail->Subject = $MailSubject; $mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically $mail->MsgHTML($MailHtmlMessage); if($file_name1!="") { $mail->AddAttachment($MailAttachment1); } // attachment // $mail->AddAttachment($MailAttachment2); // attachment if ( !$mail->Send() ) { $error = "Unable to send to: " . $to . "
"; throw new phpmailerAppException($error); } else { $succsscaptcha='Your Contact Form Successfully Submitted.'; if($file_name1!="") { unlink($MailAttachment1); } } } } ?>
   Can't Read ? Click
   Refresh