', $message['member']['email'], '">', ($settings['use_image_buttons'] ? '' : $txt[69]), '';
echo '
', $message['subject'], '';
// Show who the message was sent to.
echo '
« ', $txt['sent_to'], ': ';
// People it was sent directly to....
if (!empty($message['recipients']['to']))
echo implode(', ', $message['recipients']['to']);
// Otherwise, we're just going to say "some people"...
elseif ($context['folder'] != 'outbox')
echo '(', $txt['pm_undisclosed_recipients'], ')';
echo ' ', $txt[30], ': ', $message['time'], ' » ';
// If we're in the outbox, show who it was sent to besides the "To:" people.
if (!empty($message['recipients']['bcc']))
echo '
« ', $txt[1502], ': ', implode(', ', $message['recipients']['bcc']), ' » ';
if (!empty($message['is_replied_to']))
echo '
« ', $txt['pm_is_replied_to'], ' » ';
echo '
|
'; // Show reply buttons if you have the permission to send PMs. if ($context['can_send_pm']) { // You can't really reply if the member is gone. if (!$message['member']['is_guest']) { // Were than more than one recipient you can reply to? (Only in the "button style", or text) if ($message['number_recipients'] > 1 && (!empty($settings['use_buttons']) || !$settings['use_image_buttons'])) echo ' ', $reply_all_button, '', $context['menu_separator']; echo ' ', $quote_button, '', $context['menu_separator'], ' ', $reply_button, ' ', $context['menu_separator']; } // This is for "forwarding" - even if the member is gone. else echo ' ', $forward_button, '', $context['menu_separator']; } echo ' ', $delete_button, ' |
', $txt[139], ': ', $context['page_index'], '
|