You are here

function messaging_phpmailer_help in Messaging 6.4

Implementation of hook_help().

File

messaging_phpmailer/messaging_phpmailer.module, line 289
HTML Mail using PHPMailer. Messaging method plug-in.

Code

function messaging_phpmailer_help($path, $arg) {
  switch ($path) {
    case 'admin/messaging/settings/method/phpmailer':
      $output = '<p>' . t('You can configure global Messaging email settings (such as sender address format) on the <a href="@mail_settings">mail settings page</a>.', array(
        '@mail_settings' => url('admin/messaging/settings/method/mail'),
      )) . '</p>';
      return $output;
  }
}