You are here

function mail_logger_perm in Mail Logger 6

Same name and namespace in other branches
  1. 5 mail_logger.module \mail_logger_perm()

Implementation of hook_perm().

File

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

Code

function mail_logger_perm() {
  return array(
    'access mail logger',
  );
}