From a5fbfe583065a312d428e6960ff24d38d052429d Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Sat, 1 Oct 2005 00:31:47 +0000 Subject: [PATCH] Improve application rejection email so the user knows that they can modify and resubmit the application --- include/application.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/application.php b/include/application.php index 69dffc3..2b2f8c0 100644 --- a/include/application.php +++ b/include/application.php @@ -332,8 +332,9 @@ class Application { { $sSubject = "Submitted application rejected"; $sMsg = "The application you submitted (".$oApp->sName." ".$this->sName.") has been rejected."; + $sMsg .= "Clicking on the link in this email will allow you to modify and resubmit the application. "; + $sMsg .= "A link to your queue of applications and versions will also show up on the left hand side of the Appdb site once you have logged in. "; $sMsg .= APPDB_ROOT."admin/resubmitRejectedApps.php?sub=view&appId=".$this->iAppId."\n"; - $sMsg .= "Reason given:\n"; $sMsg .= $_REQUEST['replyText']."\n"; /* append the reply text, if there is any */ }