Add-on Reply to Thread In Email notification

intradox

Well-known member
Was using Adobe forums and noticed they had a feature where one could reply to a thread's email notification and it would post that reply in plain-text on the thread.

Would something like this be possible? Not too familiar with Xenforo's email setup but I would assume it would need a unique email linking to the thread.
 
I just stumbled upon an old one of @Jeremy 's posts that will allow me to achieve most of the functionality that I desire. From what I understand, this will allow Watched Threads to continue to produce alerts and email notifications, even if the watched thread remains unread by the watching member. Thanks @Jeremy.

http://xenforo.com/community/threads/disable-notifications-block.55887/page-2#post-597611

in library/XenForo/Model/ForumWatch.php find and comment out the following lines:
PHP:
  if (isset(self::$_preventDoubleNotify[$thread['thread_id']][$user['user_id']]))
  {
  continue;
  }
  self::$_preventDoubleNotify[$thread['thread_id']][$user['user_id']] = true;
In library/XenForo/Model/ThreadWatch.php find and comment out the following lines:
PHP:
  if (isset(self::$_preventDoubleNotify[$thread['thread_id']][$user['user_id']]))
  {
  continue;
  }
  self::$_preventDoubleNotify[$thread['thread_id']][$user['user_id']] = true;
I know others have been looking for similar functionality as I've seen quite a few other similar requests by other members here. Hence, i thought I would share what I found in hopes it helps others.
 
Top Bottom