Latest Update for bug fixes in Bulk Emailer v1.0 DELETING AN EMAIL ADDRESS ERROR.... Problem reported is the deleted emial address does not delete. Error in code in readlist.php around line 39 (Dreamweaver) Replace the $delete section with this piece of code from line 34-45 (Dreamweaver)
Code if ($delete) {
$File3 = "lists/$file.agt";
$fh3 = fopen($File3, 'r');
$Data3 = fread($fh3,filesize($File3));
fclose($fh3);
$NewData3 = str_replace($delete."¦", "", $Data3);
$NewData4 = rtrim($NewData3, "¦");
$fw = fopen($File3, 'w') or die("can't open file");
fwrite($fw, $NewData4);
fclose($fw);
echo"<span class='error'>NOTICE: Deleted Email From List!</SPAN><br><br>";
}
|
|
|