From fe004f36fa24d8dcbc126c226fc5e83765ab8035 Mon Sep 17 00:00:00 2001 From: Tony Lambregts Date: Fri, 28 Apr 2006 00:53:01 +0000 Subject: [PATCH] Add note to use the AppDB to reply to email instead of replying to the email --- include/comment.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/comment.php b/include/comment.php index 9463b96..2c5b597 100644 --- a/include/comment.php +++ b/include/comment.php @@ -88,7 +88,9 @@ class Comment { } $sSubject = "Comment for '".lookup_app_name($this->iAppId)." ".lookup_version_name($this->iVersionId)."' added by ".$_SESSION['current']->sRealname; - $sMsg = APPDB_ROOT."appview.php?versionId=".$this->iVersionId."&mode=nested#Comment-".$this->iCommentId."\n"; + $sMsg = "To reply to this email please use the link provided below.\n"; + $sMsg .= "DO NOT reply via your email client as it will not reach the person who wrote the comment\n"; + $sMsg .= APPDB_ROOT."appview.php?versionId=".$this->iVersionId."&mode=nested#Comment-".$this->iCommentId."\n"; $sMsg .= "\n"; $sMsg .= "Subject: ".$this->sSubject."\r\n"; $sMsg .= "\n";