From 16e7e96a5ff6419869a5def21e10bb11130e626d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 14 Jun 2008 23:03:19 -0400 Subject: [PATCH] use site name as default sender darcs-hash:20080615030319-84dde-3dc38d515b029424027c3160e06e62ce8b7dd29a.gz --- lib/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mail.php b/lib/mail.php index 6656964abc..25253fd816 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -51,7 +51,7 @@ function mail_notify_from() { if ($config['mail']['notifyfrom']) { return $config['mail']['notifyfrom']; } else { - return 'Do Not Reply '; + return $config['site']['name'] . ' '; } } \ No newline at end of file