You are here

function mail_logger_clear in Mail Logger 6

1 string reference to 'mail_logger_clear'
mail_logger_menu in ./mail_logger.module
Implementation of hook_menu().

File

./mail_logger.module, line 219
Mail Logger module logs all outgoing mail that passes through the drupal_mail function.

Code

function mail_logger_clear() {
  $output = t('The clear log button will delete all outgoing mail log entries.');
  $output .= drupal_get_form('mail_logger_clear_form');
  return $output;
}