|
thats for reading from your mysql databse which you will have to know your username and email stuff and fixup the query.
If you want to just read in a line by line text file
remove the db stuff and do like
$emails = file('./emails.txt');
foreach ($emails as $email) {
..insert just the mailing code above here...
}
|