- web: include private message content in email notification

svn path=/trunk/boinc/; revision=14321
This commit is contained in:
David Anderson 2007-11-29 18:14:56 +00:00
parent 27ba7bf0e8
commit a09e01d10f
2 changed files with 24 additions and 10 deletions

View File

@ -11807,3 +11807,9 @@ David 29 Nov 2007
user/
edit_forum_preferences_action.php
edit_forum_preferences_form.php
David 29 Nov 2007
- web: include private message content in email notification
html/user/
pm.php

View File

@ -88,16 +88,24 @@ function pm_send($to, $subject, $content) {
$send_email = false;
if ($to_user->prefs->pm_notification) $send_email = true;
BoincPrivateMessage::insert("(userid, senderid, date, subject, content) VALUES ($userid, $senderid, UNIX_TIMESTAMP(), '$sql_subject', '$sql_content')");
if ($send_email) { // Send email notification
$message = "Dear ".$to->name.",\n\n";
$message .= "You have received a new private message at ".PROJECT." from ".$logged_in_user->name.", entitled \"".$subject."\".\n\n";
$message .= "To read the original version, respond to, or delete this message, you must log in here:\n";
$message .= URL_BASE."pm.php\n\n";
$message .= "Do not reply to this message. To disable email notification, go to\n";
$message .= URL_BASE."prefs.php?subset=project\n";
$message .= "and change email notification settings.\n";
if ($send_email) {
$message = "
You have received a new private message at ".PROJECT.".
send_email($to, "[".PROJECT."] Private message notification", $message);
From: $logged_in_user->name (ID $logged_in_user->id)
Subject: $subject
$content
--------------------------
To delete or respond to this message, visit:
".URL_BASE."pm.php
To disable email delivery of private messages, visit:
".URL_BASE."edit_forum_preferences_form.php
Do not reply to this message.
" ;
send_email($to, "[".PROJECT."] private message", $message);
}
}