diff --git a/user_register_notify.admin.inc b/user_register_notify.admin.inc
index 2347625..a46cef7 100644
--- a/user_register_notify.admin.inc
+++ b/user_register_notify.admin.inc
@@ -5,12 +5,12 @@
  * Settings form.
  */
 
-if(!defined('USER_REGISTER_NOTIFY_SUBJECT'))
-  define('USER_REGISTER_NOTIFY_SUBJECT', t('Account details for !user_name at !site'));
-  
-if(!defined('USER_REGISTER_NOTIFY_BODY'))
-  define('USER_REGISTER_NOTIFY_BODY', t("!user_name (!user_view) has !action account.\n\nEdit user: !user_edit\n\nDelete User: !user_delete\n\nUser Status: !approved\n\n!profile"));
-
+if(!defined('USER_REGISTER_NOTIFY_SUBJECT'))
+  define('USER_REGISTER_NOTIFY_SUBJECT', t('Account details for !user_name at !site'));
+
+if(!defined('USER_REGISTER_NOTIFY_BODY'))
+  define('USER_REGISTER_NOTIFY_BODY', t("!user_name (!user_view) has !action an account.\n\nEdit user: !user_edit\n\nDelete User: !user_delete\n\nUser Status: !approved\n\n!profile"));
+
 /**
  * Module settings page.
  */
@@ -24,7 +24,7 @@ function user_register_notify_settings() {
   $user_notify_opts = array(
     'Custom' => t('Send to a custom email address'),
     'Role' => t('Send to a specific role(s)'),
-    'Both' => t('Send to Both a custom email address and a specific role(s)'),
+    'Both' => t('Send to both a custom email address and a specific role(s)'),
     );
   $form['user_notify']['user_register_notify_type'] = array(
     '#type' => 'radios',
diff --git a/user_register_notify.module b/user_register_notify.module
index 4bbb9de..0a2fde6 100644
--- a/user_register_notify.module
+++ b/user_register_notify.module
@@ -20,7 +20,7 @@ function user_register_notify_help($path, $arg) {
 
 if(!defined('USER_REGISTER_NOTIFY_SUBJECT'))
   define('USER_REGISTER_NOTIFY_SUBJECT', t('Account details for !user_name at !site'));
-  
+
 if(!defined('USER_REGISTER_NOTIFY_BODY'))
   define('USER_REGISTER_NOTIFY_BODY', t("!user_name (!user_view) has !action an account.\n\nEdit user: !user_edit\n\nDelete User: !user_delete\n\nUser Status: !approved\n\n!profile"));
 
@@ -44,7 +44,7 @@ function user_register_notify_menu() {
  */
 function user_register_notify_user_insert(&$edit, &$account, $category = NULL) {
     user_register_notify_setup_email($edit, $account);
-}  
+}
 
 /**
  * Implements hook_user_update().
@@ -72,12 +72,12 @@ function user_register_notify_setup_email(&$edit, &$account, $action = 'insert')
     }
     switch ($notify_type) {
       case 'Custom':
-        if(!empty($from)) {
+        if (!empty($from)) {
             $emails = preg_split('/,[\w]+/', variable_get('user_register_notify_mailto', $from));
         }
         break;
       case 'Both':
-        if(!empty($from)) {
+        if (!empty($from)) {
             $emails = preg_split('/,[\w]+/', variable_get('user_register_notify_mailto', $from));
         }
         // There is no break here for a reason.
@@ -92,7 +92,7 @@ function user_register_notify_setup_email(&$edit, &$account, $action = 'insert')
         break;
     }
     $emails = array_unique($emails);
-    if(empty($emails)) {
+    if (empty($emails)) {
         return;
     }
     $to = implode(', ', $emails);
@@ -113,7 +113,7 @@ function user_register_notify_setup_email(&$edit, &$account, $action = 'insert')
 
 function user_register_notify_mail($key, &$message, $params) {
   global $base_url;
-  
+
   if ($key == 'user-register-notify-admin') {
     $uaccount = $params['account'];
     $profile_data = "";
@@ -141,7 +141,7 @@ function user_register_notify_mail($key, &$message, $params) {
             if ($field->value) {
               $profile_data .= sprintf("%s: Checked\n", $field->title);
               $variables['!' . $field->name] = "Checked";
-            } 
+            }
             else {
               $profile_data .= sprintf("%s: Not Checked\n", $field->title);
               $variables['!' . $field->name] = "Not Checked";
@@ -176,7 +176,7 @@ function user_register_notify_mail($key, &$message, $params) {
     $variables['!user_delete'] = url('user/' . $uaccount->uid . '/delete', array('absolute' => TRUE));
     $variables['!approved'] = $uaccount->status ? 'approved': 'blocked';
     $variables['!site'] = variable_get('site_name', 'Drupal');
-    $variables['!user_uid'] = $uaccount->uid;  
+    $variables['!user_uid'] = $uaccount->uid;
     $variables['!uri'] = $base_url;
     $variables['!uri_brief'] = drupal_substr($base_url, drupal_strlen('http://'));
     $variables['!date'] = format_date(REQUEST_TIME);
@@ -189,4 +189,3 @@ function user_register_notify_mail($key, &$message, $params) {
     $message['body'] []= token_replace($body, array('user' => $uaccount));
   }
 }
-
