MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/bosweb/b1705/libeyne.com.mv/
File Upload :
Current < : /hermes/bosweb/b1705/libeyne.com.mv/testmail.php

<?php
$url = 'http://www.cipher-inc.com';
$contents = file_get_contents($url); 

$to = "ibrahimyacyr@gmail.com";
$subject = "HTML email";

$message = "$contents";

// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";

// More headers
$headers .= 'From: <webmaster@example.com>' . "\r\n";
$headers .= 'Cc: ibrahimyacyr@gmail.com' . "\r\n";

mail($to,$subject,$message,$headers);



echo $contents;
?>