Adding reply username to the emails?

MikeRenz

not stock
I know its possible, becuase other ubb's i'm on show tells you who replied to your posts in the email notification.

I like that feature..does anyone else? If its simple to do, could you add that? :)
 

TheObiJuan

Active member
what?? it works for me. it is toggled on the profile. also whenever you reply it is at the bottom of the list of boxes that can be checked.
if it helps...
 

MikeRenz

not stock
No, you misunderstood. I get the email notifications, but in that email, it doesn't say WHO replied to your post. Only that somebody replied.

It'd be cool to show who replied, so you don't have to waste your time if the person that replied is someone you don't care what they think. :lol:
 

icatcher

New member
Here's your solution

Here's your solution

Here's what you want..
#################################################################
## Mod Title: Notify Email Shows Poster Name
## Mod Version: 1.0.0
## Description: This will show the name of the person reacting to
## the topic you're watching in the notification
## email.
##
## Installation Level: easy
## Installation Time: 4 Minutes
## Files To Edit: language/lang_english/email/topic_notify.tpl,
## includes/functions_post.php
## Included Files: N/A
#################################################################
## Security Disclaimer: This MOD Cannot Be Posted To Or Added At Any Non-Official phpBB Sites
#################################################################
##
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################

#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/email/topic_notify.tpl

#
#-----[ FIND ]------------------------------------------
#
This topic has received a reply since your last visit.

#
#-----[ REPLACE WITH ]------------------------------------------
#
{POSTER_USERNAME} has replied to this topic since your last visit.

#
#-----[ OPEN ]------------------------------------------
#
includes/functions_post.php

#
#-----[ FIND ]------------------------------------------
#
'TOPIC_TITLE' => $topic_title,

#
#-----[ AFTER, ADD ]------------------------------------------
#
'POSTER_USERNAME' => $userdata['username'],

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM

Ian, Keith think you could install this?
If you need any help shoot me an e-mail..
 

icatcher

New member
I already implemented it on my board here...
it came from phpbb.com,
I've implemented a bunch of mods, mainly just to learn php..
 

Loeryder

New member
Soooooo Are we getting this feature or what???

Lots of other boards are using it and it makes it cool to know WHO the PMs or Replys are coming from so you can gauge if its a total waste of time to go read or not.

Seems like it takes forever to get updates either here or www.syty.org
 

keith455

Average Joe
Staff member
I'll look into that. I'm going on vacation this weekend but I'll try to do it tonight or when i get back i promise.
Thanks for the info chris.
Keith
 

Loeryder

New member
Cool that worked...

Now can we get it on the PMs too???
they still just say someone replied to your message, not who.

if I had 50 PMs I'd have no idea who or what any of them were responded to until i got there to check.

Thx.
 

icatcher

New member
Keith-
You should be able to just add this

{POSTER_USERNAME} has replied to this topic since your last visit.

to

language/lang_english/email/privmsg_notify.tpl

Hope this helps...
Also let me know if you have any question regarding any mods as my board is fully modded!
 
Top