Hello,
I currently have this script, its sending emails perfect but am getting a Error-500: Internal server error. after i press the submit button.
its strange how i get this error but the mail still sends, ive tried for days to stop the error can anyone on here help me get rid of the error and help me to be able to send this message in HTML as I want to add images. well i would like to create the HTML email body within the code if anyone can point me in the right direction please.
<?php
//db connection
mysql_connect($db_host,$db_username,$db_password) or die(mysql_error());
mysql_select_db($db_name) or die(mysql_error());
if(isset($_POST['submit']))
{
//set emails as array
$emails = array();
$x = 1;
//quantity of emails sent before 3 sec delay to avoid timeout
$hold = 99;
//query to select the email address
$sql = mysql_query("SELECT email_address FROM tblusers") or die(mysql_error());
//fetch them
while($r = mysql_fetch_array($sql))
{
$emails[] = $r['email'];
}
//count total emails
$total = count($emails);
//repeat for each email
for ($i = 1; $i <= $total; $i++)
{
//stripslashes in message
$msg = stripslashes($_POST['msg']);
//send email to user (need to change name and email:)
mail($emails[$i], $_POST['subject'], $msg, "From: Your Site<
[email protected]>");
//if $x = 10 then wait 3 seconds to avoid timeout
$x++;
if($x == $hold)
{
sleep(3);
$x = 0;
}
}
//close database connection and echo success message
mysql_close();
echo "<strong>Mail successfully sent to $total addresses!</strong><br><br>";
}
?>
<html>
<head>
<title>Send Mail</title>
<body>
<form name="mail" action="" method="post">
Subject: <input type="text" name="subject" size="40"><br>
<textarea name="msg" cols="40" rows="8"></textarea><br>
<input type="submit" name="submit" value="Send Email">
</form>
</body>
</html>
Thanks