Okay I made myself a basic newsletter. For the admin controls I basically just did the following code:
if (isset($submit_newsletter)) {
$result = mysql_query("Select * from newsletter");
while ($show = mysql_fetch_assoc($result)) {
mail($show[email], $subject, $message, "From: [email]Newsletter@gunitworld.com[/email]");
}
echo "sent";
}
Now this works but I have over 400 emails in my sql database. This takes forever to send. However, in forums they send instantly. What can I do different to make this execute faster?