You are here

function theme_maillog in Maillog / Mail Developer 6

Same name and namespace in other branches
  1. 7 maillog.module \theme_maillog()
1 theme call to theme_maillog()
maillog_maillog_page in ./maillog.module

File

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

Code

function theme_maillog($maillog) {
  $output = theme('maillog_header_from', $maillog['header_from']);
  $output .= theme('maillog_header_to', $maillog['header_to']);
  $output .= theme('maillog_header_reply_to', $maillog['header_reply_to']);
  $output .= theme('maillog_header_all', $maillog['header_all']);
  $output .= theme('maillog_body', $maillog['body']);
  return $output;
}