Minor fixes in mail.php.

This commit is contained in:
Retro_Guy 2023-08-11 06:00:41 -07:00
parent d09aac728a
commit e908f8676f
1 changed files with 4 additions and 2 deletions

View File

@ -232,12 +232,14 @@ echo '</table>';
$return_val = "Failed to Send. No Key for Destination"; $return_val = "Failed to Send. No Key for Destination";
} }
} }
$return_val = "Message sent.";
} else { } else {
$return_val = "Failed to Send. Database Error"; $return_val = "Failed to Send. Database Error";
} }
// Act on return values for response to user // Act on return values for response to user
echo $return_val; echo $return_val;
$dbh = null; $dbh = null;
$user = $from;
} }
} }
} }
@ -280,8 +282,8 @@ echo '</table>';
echo '</tr></tbody></table></form>'; echo '</tr></tbody></table></form>';
} }
// Show My Messages // Show My Messages
$database = $spooldir.'/mail.db3'; $database = $spooldir.'/mail.db3';
$dbh = mail_db_open($database); $dbh = mail_db_open($database);
echo '<hr><h1 class="np_thread_headline">My Messages:</h1>'; echo '<hr><h1 class="np_thread_headline">My Messages:</h1>';
echo '<table cellspacing="0" width="100%" class="np_results_table">'; echo '<table cellspacing="0" width="100%" class="np_results_table">';
$query = $dbh->prepare('SELECT * FROM messages WHERE mail_from=:mail_from OR rcpt_to=:mail_from ORDER BY date DESC'); $query = $dbh->prepare('SELECT * FROM messages WHERE mail_from=:mail_from OR rcpt_to=:mail_from ORDER BY date DESC');