domingo, 20 de diciembre de 2015

Sending MYSQL table to email


                                   Total of extensions 2
ExtensionTotal callsDurationCaller IDACTION
10227 Seconds"102" <102>
view
109615 Seconds"" <109>
view



Sending this table to an email address in with the htm tags, first  we  load the  table on  a variable

file_get_contents('http://65.181.118.232/php-project/counter.php');

65.181.118.232/php-project/counter.php i s the url where the table is showed

<?php
$homepage = file_get_contents('http://65.181.118.232/php-project/counter.php');
$body= $homepage;
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

mail("ambiorixg12@gmail.com","Alert",$body,$headers);
echo "message sent";
?>




No hay comentarios:

Publicar un comentario