You are here

function phpmailer_perm in PHPMailer 5

Same name and namespace in other branches
  1. 5.2 phpmailer.module \phpmailer_perm()
  2. 6.3 phpmailer.module \phpmailer_perm()
  3. 6 phpmailer.module \phpmailer_perm()
  4. 6.2 phpmailer.module \phpmailer_perm()

Implementation of hook_perm().

File

./phpmailer.module, line 12
This module integrates PHPMailer with Drupal, both as native drupal_mail() wrapper, and as part of the Mime Mail module.

Code

function phpmailer_perm() {
  return array(
    'administer phpmailer settings',
  );
}