|
To send email to all the users that subscribe, we need the $tmail for each $nuserid. So this must be right in image-inc.php:
list( $tuserid, $tusername, $tmail ) = get_userinfo( "", $nuserid );
The problem must be in emails.php where
$Globals['pp_lang']['subnotify'] = "{$tusername} has uploaded one or more ads to a category you subscribe to.
need to be changed to:
$Globals['pp_lang']['subnotify'] = "{$User['username']} has uploaded one or more ads to a category you subscribe to.
The same place this line also need to be removed:
Image name: {$realname}
Can you please confirm that this is correct?
|