coppermine-gallery.com/forum

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Ecards & Email => Topic started by: meek on September 20, 2005, 10:26:50 AM

Title: Display commenter's name in notification email.
Post by: meek on September 20, 2005, 10:26:50 AM
Hi there.

Searched the forum but couldn't find this topic covered anywhere so I'm posting here.
Whenever I receive a notification email that a comment has been added in my gallery, the email only contains the comment and a link. I would like to have the commenter's name displayed also.

Like this: "Name of commenter: This is a comment..." Right now the email begins with "This is a comment..."

Anyone?

Thanks.
Title: Re: Display commenter's name in notification email.
Post by: Nibbler on September 20, 2005, 10:35:47 AM
db_input.php, find the 2nd occurence of this code

$mail_body = $msg_body . "\n\r ".$lang_db_input_php['email_comment_body'] . " " . $CONFIG['ecards_more_pic_target'] . $redirect;

and you can add in the user's name

$mail_body = USER_NAME . ": " . $msg_body . "\n\r ".$lang_db_input_php['email_comment_body'] . " " . $CONFIG['ecards_more_pic_target'] . $redirect;
Title: Re: Display commenter's name in notification email.
Post by: meek on September 20, 2005, 01:17:45 PM
Works perfectly, thanks.