/**
  * Renders the email sent status column.
  *
  * @access public
  * @since  8.3
  *
  * @param array $log The log item data.
  *
  * @return string
  */
 public function column_status($log)
 {
     return cnLog_Email::viewLogItem('response', $log['status']);
 }
				<td><?php 
    cnLog_Email::viewLogItem('bcc', $meta['bcc']);
    ?>
</td>
			</tr>
		<?php 
}
?>

		<tr>
			<th><?php 
esc_html_e('Attachments', 'connections');
?>
</th>
			<td><?php 
echo cnLog_Email::viewLogItem('attachments', $meta['attachments']);
?>
</td>
		</tr>

		<tr>
			<th><?php 
echo esc_html_x('Message', 'Content of email.', 'connections');
?>
</th>
			<?php 
if (!empty($meta['type']) && 'text/html' == $meta['type']) {
    ?>
				<td><?php 
    echo wp_kses_post($post->post_content);
    ?>