una manera facil con PHPMailer y eso lo pones en un cron y listo.
Código PHP:
<?php
//debes llenar los datos desde donde envias el mail y el destinatario
include("PHPMailer/class.phpmailer.php");
$mail = new PHPMailer(true);
$mail->IsSMTP();
$mail->SMTPAuth = ;
$mail->Host = "";
$mail->SMTPSecure = "";
$mail->Port = ;
$mail->Username = "";
$mail->Password = "";
$mail->SetFrom("[email protected]","nombre");
$mail->AddAddress("mail_destino","nombre_destino");
$mail->Subject = "";
$cuerpo = file_get_contents("http://www.futbolenlatele.com/");
$mail->MsgHTML($cuerpo);
$mail->Send();
?>