Sindbad~EG File Manager

Current Path : /home/ssan4778/public_html/06052021/smartphone/
Upload File :
Current File : /home/ssan4778/public_html/06052021/smartphone/contact.php

<?php 

	/* ==========================  Define variables ========================== */

	#Your e-mail address
	define("__TO__", "contato@sanhouse.com.br");

	#Message subject
	define("__SUBJECT__", "Mensagem enviada por, ");

	#Success message
	define('__SUCCESS_MESSAGE__', "Mensagem enviada com sucesso. Aguarde, entraremos em contato em breve!");

	#Error message 
	define('__ERROR_MESSAGE__', "Erro, sua mensagem não pode ser enviada");

	#Messege when one or more fields are empty
	define('__MESSAGE_EMPTY_FILDS__', "Preencha todos os campos");

	/* ========================  End Define variables ======================== */

	//Send mail function
	function send_mail($to,$subject,$message,$headers){
		if(@mail($to,$subject,$message,$headers)){
			echo json_encode(array('info' => 'success', 'msg' => __SUCCESS_MESSAGE__));
		} else {
			echo json_encode(array('info' => 'error', 'msg' => __ERROR_MESSAGE__));
		}
	}

	//Check e-mail validation
	function check_email($email){
		if(!@eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email)){
			return false;
		} else {
			return true;
		}
	}

	//Get post data
	if(isset($_POST['first-name']) and isset($_POST['mail']) and isset($_POST['your-comment'])){
		$name 	 = $_POST['first-name'];
		$mail 	 = $_POST['mail'];
		$website  = $_POST['website'];
		$comment = $_POST['your-comment'];

		if($name == '') {
			echo json_encode(array('info' => 'error', 'msg' => "Por favor digite seu nome."));
			exit();
		} else if($mail == '' or check_email($mail) == false){
			echo json_encode(array('info' => 'error', 'msg' => "E-mail inválido."));
			exit();
		} else if($comment == ''){
			echo json_encode(array('info' => 'error', 'msg' => "Digite uma mensagem."));
			exit();
		} else {
			//Send Mail
			$to = __TO__;
			$subject = __SUBJECT__ . ' ' . $name;
			$message = '
			<html>
			<head>
			  <title>Email de: '. $name .'</title>
			</head>
			<body>
			  <table style="width: 500px; font-family: arial; font-size: 14px;" border="1">
				<tr style="height: 32px;">
				  <th align="right" style="width:150px; padding-right:5px;">Nome:</th>
				  <td align="left" style="padding-left:5px; line-height: 20px;">'. $name .'</td>
				</tr>
				<tr style="height: 32px;">
				  <th align="right" style="width:150px; padding-right:5px;">E-mail:</th>
				  <td align="left" style="padding-left:5px; line-height: 20px;">'. $mail .'</td>
				</tr>
				<tr style="height: 32px;">
				  <th align="right" style="width:150px; padding-right:5px;">Website:</th>
				  <td align="left" style="padding-left:5px; line-height: 20px;">'. $website .'</td>
				</tr>
				<tr style="height: 32px;">
				  <th align="right" style="width:150px; padding-right:5px;">Mensagem:</th>
				  <td align="left" style="padding-left:5px; line-height: 20px;">'. $comment .'</td>
				</tr>
			  </table>
			</body>
			</html>
			';

			$headers  = 'MIME-Version: 1.0' . "\r\n";
			$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
			$headers .= 'From: ' . $mail . "\r\n";

			send_mail($to,$subject,$message,$headers);
		}
	} else {
		echo json_encode(array('info' => 'error', 'msg' => __MESSAGE_EMPTY_FILDS__));
	}
 ?>

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists