Index: notifications.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/notifications/notifications.module,v
retrieving revision 1.6.2.10
diff -b -u -p -r1.6.2.10 notifications.module
--- notifications.module	17 Apr 2008 15:00:38 -0000	1.6.2.10
+++ notifications.module	23 Apr 2008 12:25:44 -0000
@@ -139,12 +139,22 @@ function notifications_user($type, $edit
           '#weight'      => 5,
           '#collapsible' => TRUE,
         );
+        $methods = _notifications_send_methods($user);
+        if (count($methods) > 1) {
         $form['notifications']['notifications_send_method'] = array(
           '#type' => 'select',
           '#title' => t('Default send method'),
           '#options' => _notifications_send_methods($user),
           '#default_value' => notifications_user_setting('send_method', $user),
         );
+        }
+        else {
+          $form['notifications']['notifications_send_method'] = array(
+            '#type' => 'item',
+            '#title' => t('Default send method'),
+            '#value' => (count($methods) ? key($methods) : t('No send methods available')),
+          );
+        }
         $form['notifications']['notifications_send_interval'] = array(
           '#type' => 'select',
           '#title' => t('Default send interval'),
