diff --git a/logintoboggan.tokens.inc b/logintoboggan.tokens.inc
index b355670..12ecb10 100644
--- a/logintoboggan.tokens.inc
+++ b/logintoboggan.tokens.inc
@@ -13,6 +13,10 @@ function logintoboggan_token_info() {
     'name' => t('Validate URL'),
     'description' => t('The URL of the account validation page, provided by logintoboggan.'),
   );
+  $info['tokens']['user']['password'] = array(
+    'name' => t('Password'),
+    'description' => t('The password by the user. Avalible only on new user creation.'),
+  );
   return $info;
 }
 
@@ -38,6 +42,11 @@ function logintoboggan_tokens($type, $tokens, array $data = array(), array $opti
             $replacements[$original] = logintoboggan_eml_validate_url($account, $url_options);
           }
           break;
+        case 'password':
+          if (isset($account->password)) {
+            $replacements[$original] = $account->password;
+          } 
+          break;          
       }
     }
   }
