You are here

function htmlmail_permission in HTML Mail 7.2

Same name and namespace in other branches
  1. 8.2 htmlmail.module \htmlmail_permission()

Implements hook_permission().

Defines a permission for setting the per-user plaintext option.

File

./htmlmail.module, line 13
Sends system emails in HTML.

Code

function htmlmail_permission() {
  $args = array(
    '!htmlmail' => url('https://www.drupal.org/project/htmlmail'),
    '%htmlmail' => 'HTML Mail',
  );
  return array(
    'choose htmlmail_plaintext' => array(
      'title' => t('Choose to receive plaintext emails via %htmlmail', $args),
      'description' => t('Granting this permission allows users to choose whether to receive all their emails in plaintext, rather than the default format provided by the <a href="!htmlmail">%htmlmail</a> module.', $args),
    ),
  );
}