Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
global $config;
$sql_mail="SELECT SHA1(id) AS idsha1, name, email
FROM member
WHERE notify=2";
$result_mail=mysql_query($sql_mail);
$picdata = get_picture_by_id($parent_id);
$picurl = generate_url("picture", $parent_id, NULL, true);
$albumdata = get_album_by_id($picdata['parent_album']); //c(.)
while($row_mail=mysql_fetch_assoc($result_mail))
{
$idsha1=$row_mail["idsha1"];
$msg="$author has commented on a photo.
You can see all the comments for this picture here: http://www.truemetal.org/cirithungol/$picurl
Click the following link to unsubscribe: http://www.truemetal.org/cirithungol/maillist.php?action=unmail&id=$idsha1
Cheers,
the cirith ungol webpit admin
http:/www.truemetal.org/cirithungol";
mail(
$row_mail["email"],
"new comment - ".SmartStripSlashes($albumdata['name']),
SmartStripSlashes($msg),
"From: The Cirith Ungol Webpit <savx23@yahoo.no>"); //c(.)
}
1 to 12 of 12