You are here

function theme_maillog_header_reply_to in Maillog / Mail Developer 6

Same name and namespace in other branches
  1. 7 maillog.module \theme_maillog_header_reply_to()

Render the 'Reply-To' field in the node type 'Logged Mail'

1 theme call to theme_maillog_header_reply_to()
theme_maillog in ./maillog.module

File

./maillog.module, line 251
Provides a 'maillog' node type

Code

function theme_maillog_header_reply_to($header_reply_to) {
  $output = '';
  $output .= '<div class="field mail-log-header-reply-to">';
  $output .= '<div class="field-label">' . t('Reply To') . ':</div>';
  $output .= '<div class="field-item">' . check_plain($header_reply_to) . '</div>';
  $output .= '</div>';
  return $output;
}