If you have any query related to our website wwww.EduNews.xyz or any question related to Career you can ask via mail or through comment box.
[insert_php]
if(isset($_POST[‘send’]))
{
$username = $_POST[‘username’];
$email = $_POST[’email’];
$phone = $_POST[‘phone’];
$subject = $_POST[‘subject’];
$body = $_POST[‘message’];
$to = ‘info@digisquare.org’;
$message = ‘
Contact Information
Name | Phone No | |
---|---|---|
‘.$username.’ | ‘.$email.’ | ‘.$phone.’ |
Message
‘.$body.’
‘;
$headers = “MIME-Version: 1.0” . “\r\n”;
$headers .= “Content-type:text/html;charset=UTF-8” . “\r\n”;
$headers .= $email . “\r\n”;
$result = mail($to,$subject,$message,$headers);
if($result)
{
echo (‘
‘);
}
else
{
echo (‘
‘);
}
}
[/insert_php]