Hi, I have and html e-mail that I have to send out to 1343 people.
It is coded like this at the mo:
<?php
$recipient1 = email add";
$subject1 = "subject";
$mailheaders = "From: the company\n";
$mailheaders .= "Reply-To: thecomany@me.com\r\n";
$mailheaders .= "Content-Type: text/html\r\n";
$msg1 = "<html></html>";
mail($recipient1, $subject1, $msg1, $mailheaders) or die ("Couldn't send mail"
header("Location: emailed.htm"
?>
Someone sugessted that I use a database, but I do not have access to mine at the mo.
I have all of the addresses in a txt file.
Can anyone help.
Chrs,
Matt
It is coded like this at the mo:
<?php
$recipient1 = email add";
$subject1 = "subject";
$mailheaders = "From: the company\n";
$mailheaders .= "Reply-To: thecomany@me.com\r\n";
$mailheaders .= "Content-Type: text/html\r\n";
$msg1 = "<html></html>";
mail($recipient1, $subject1, $msg1, $mailheaders) or die ("Couldn't send mail"
header("Location: emailed.htm"
?>
Someone sugessted that I use a database, but I do not have access to mine at the mo.
I have all of the addresses in a txt file.
Can anyone help.
Chrs,
Matt