You are here

function views_send_action_info in Views Send 6

Implementation of hook_action_info()

See also

http://drupal.org/node/172152

File

./views_send.module, line 52
The Views Send module.

Code

function views_send_action_info() {
  return array(
    'views_send_mail_action' => array(
      'type' => 'system',
      'description' => t('Send mass mail'),
      'configurable' => TRUE,
      'permissions' => array(
        'mass mailing with views_send',
      ),
    ),
  );
}