function mail_logger_permission in Mail Logger 7
Implements hook_permission().
File
- ./
mail_logger.module, line 20 - Mail Logger module logs all outgoing mail that passes through the drupal_mail function.
Code
function mail_logger_permission() {
return array(
'access mail logger' => array(
'title' => t('Access Mail Logger'),
'description' => t('View Mail Logger Information'),
),
);
}