function mimemail_example_permission in Mime Mail 7
Implements hook_permission().
File
- modules/
mimemail_example/ mimemail_example.module, line 25 - Core and contrib hook implementations for Mime Mail Example module.
Code
function mimemail_example_permission() {
return array(
'send example email' => array(
'title' => t('Send example email'),
'description' => t('Use the example email form to send arbitrary email with attachments.'),
'restrict access' => TRUE,
),
);
}