I built a set of scripts which are run using server cron jobs, the scripts basically handle the sanitization and optimization of the large databases the website is accumulating. The main table has around 10^5 records with each record having lots of data, totaling up to 1.7GB. The main table crashes often, therefore I created script to create copies of that table and then restore it when the table goes missing. The script was also designed to send me an email in case the worst case occurs (i.e multiple table failures.)
The irony is, I copied the code from one of my other websites (which was written by me too) where the code works perfectly but it fails to work now. Please have a look towards the following code:
<?php
function send_mail($error){
//database details
include_once('db_config.php');
$subject = "[URGENT] Your Website Is Experiencing Problems!";
$headers = "From: My Website Manager (no-reply@mywebsite.com)\r\n";
$headers .= "Reply-To: no-reply@mywebsite.com\r\n";
$headers .= "Return-Path: My Website Manager (no-reply@mywebsite.com)\r\n";
$headers .= "Organization: My Website Manager\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$headers .= "X-Priority: 3\r\n";
$headers .= "X-Mailer: PHP". phpversion() ."\r\n";
$message = 'Your Website Generated The Following Error While Completing Backups '.$error.' Please Get In Touch With Support.';
$add_par = "-f My Website Manager (no-reply@mywebsite.com)";
$mail_sent = @mail( $owner, $subject, $message, $headers, $add_par );
if($mail_sent){
return true;
}else{
return false;
}
}
$send = send_mail("Test Mail");
if($send){
echo "mail sent successfully";
}else{
echo "There was an error sending mail";
}
?>