diff --git a/Modules/Remind.pm b/Modules/Remind.pm
index 0c751f321a1cd9841420b8ff9f4483999675af13..bc6249d07ba8a1832438c0c4fb022d19721bae63 100644
--- a/Modules/Remind.pm
+++ b/Modules/Remind.pm
@@ -877,7 +877,10 @@ sub add_remind
 				$::logger->debug("Added");
 				
 				$s_params =~ s/(\d+)$/#$1/ if($s_params !~ /#\d+$/i);
-				$conn->privmsg($reply_to, "I've added $s_params, as you said");
+				my $msg = "I've added $s_params, as you said. \x0302Next will be sent on "
+				         . localtime($sched_event->time) . ".";
+				
+				$conn->privmsg($reply_to, $msg);
 			}
 			else
 			{