diff --git forward.module forward.module
index 181337f..cee8029 100644
--- forward.module
+++ forward.module
@@ -289,26 +289,26 @@ function forward_admin_settings() {
     '#description' => t('Enter the URL of the image to as a logo at the top of forwarded pages.'),
     '#attributes' => FALSE,
   );
-  $form['forward_email_defaults']['forward_email_title'] = array(
+  $form['forward_email_defaults']['forward_page_title'] = array(
     '#type' => 'textfield',
     '#title' => t('Forward Page Title'),
-    '#default_value' => variable_get('forward_email_title', t('Forward this page')),
+    '#default_value' => variable_get('forward_page_title', t('Forward this page')),
     '#size' => 40,
     '#maxlength' => 256,
     '#description' => t('Title to display above the Forward page form'),
   );
-  $form['forward_email_defaults']['forward_email_subject'] = array(
+  $form['forward_email_defaults']['forward_page_subject'] = array(
     '#type' => 'textfield',
     '#title' => t('Forward Message Subject'),
-    '#default_value' => variable_get('forward_email_subject', t('!name has forwarded a page to you from !site')),
+    '#default_value' => variable_get('forward_page_subject', t('!name has forwarded a page to you from !site')),
     '#size' => 40,
     '#maxlength' => 256,
     '#description' => t('Email subject line.  The sender\'s name will appear in place of !name in the subject.  The web site name will be inserted in place of !site.'),
   );
-  $form['forward_email_defaults']['forward_email_message'] = array(
+  $form['forward_email_defaults']['forward_page_message'] = array(
     '#type' => 'textarea',
     '#title' => t('Forward Message Body'),
-    '#default_value' => variable_get('forward_email_message', t('!name thought you would like to see this page from the !site web site.')),
+    '#default_value' => variable_get('forward_page_message', t('!name thought you would like to see this page from the !site web site.')),
     '#cols' => 40,
     '#rows' => 10,
     '#description' => t('Email message body.  The sender\'s name will appear in place of !name in the message body.  The web site name will be inserted in place of !site.  The sender will be able to add their own message after this.'),
@@ -728,7 +728,7 @@ function forward_form_submit($form, &$form_state) {
     $returnurl = '';
   }
   else {
-    $emailtype = 'email';
+    $emailtype = 'page';
     $returnurl = $form_state['values']['path'];
     $path_array = explode('/', $form_state['values']['path']);
     if (($path_array[0] == 'node') && (!empty($path_array[1])) && (is_numeric($path_array[1]))) {
@@ -799,11 +799,11 @@ function forward_form_submit($form, &$form_state) {
     'site_url' => url('forward/emailref', array('absolute' => TRUE, 'query' => 'path='. $returnurl . $form_state['values']['path_cid'])),
     'width' => variable_get('forward_width', 400),
     'logo' => (!empty($logo)) ? '<img src="'. url($logo, array('absolute' => TRUE)). '" alt="" />' : '',
-    'title' => ($emailtype == 'email') ? l($content->title, 'forward/emailref', array('absolute' => TRUE, 'query' => 'path='. $returnurl)) : FALSE,
+    'title' => ($emailtype == 'page') ? l($content->title, 'forward/emailref', array('absolute' => TRUE, 'query' => 'path='. $returnurl)) : FALSE,
     'submitted' => (theme_get_setting('toggle_node_info_'. $content->type)) ? t('by %author', array('%author' => $content->name)) : FALSE,
-    'teaser' => ($emailtype == 'email') ? $content->teaser : FALSE,
-    'node' => ($emailtype == 'email') ? $content : FALSE,
-    'link' => ($emailtype == 'email') ? l(t('Click here to read more on our site'), 'forward/emailref', array('absolute' => TRUE, 'query' => 'path='. $returnurl . $form_state['values']['path_cid'])) : FALSE,
+    'teaser' => ($emailtype == 'page') ? $content->teaser : FALSE,
+    'node' => ($emailtype == 'page') ? $content : FALSE,
+    'link' => ($emailtype == 'page') ? l(t('Click here to read more on our site'), 'forward/emailref', array('absolute' => TRUE, 'query' => 'path='. $returnurl . $form_state['values']['path_cid'])) : FALSE,
   );
 
   if (variable_get('forward_theme_template', 0)) {
