You are here

function phpmailer_permission in PHPMailer 7.4

Same name and namespace in other branches
  1. 7.3 phpmailer.module \phpmailer_permission()

Implements hook_perm().

File

./phpmailer.module, line 11
Integrates the PHPMailer library for SMTP e-mail delivery.

Code

function phpmailer_permission() {
  return array(
    'administer phpmailer settings' => array(
      'title' => t('Administer PHPMailer settings'),
      'restrict access' => TRUE,
    ),
  );
}