Index: forward.module
===================================================================
--- forward.module	(revision 1514)
+++ forward.module	(working copy)
@@ -447,7 +447,7 @@
     drupal_set_title(variable_get('forward_epostcard_title', 'Send an e-Postcard'));
   }
   else {
-    $emailtype = 'email';
+    $emailtype = 'page';
     if (!empty($_GET['cid'])) {
       $cid = '?cid='.$_GET['cid'];
     }
@@ -463,7 +463,9 @@
  */
 function forward_form(&$form_state, $path = NULL, $title = NULL, $nodeapi = FALSE) {
   global $base_url, $user;
-
+	
+	$emailtype = ($path == 'epostcard') ? 'epostcard' : 'page';
+	
   $form = array();
   $cid = array();
 
@@ -509,7 +511,7 @@
     '#description' => t('Enter multiple addresses on separate lines or separate them with commas.'),
     '#required' => TRUE,
   );
-  if (($emailtype == 'email') && ($nodeapi == FALSE)) {
+  if (($emailtype == 'page') && ($nodeapi == FALSE)) {
     $form['message']['page'] = array(
       '#type' => 'item',
       '#title' => t('You are going to email the following'),
@@ -680,7 +682,7 @@
     $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]))) {
@@ -750,10 +752,10 @@
     // New values for forward.tpl.php
     'site_url' => url('forward/emailref', array('absolute' => TRUE, 'query' => 'path='.$returnurl.$form_state['values']['path_cid'])),
     '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,
-    'node' => ($emailtype == 'email') ? $content->teaser : 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,
+    'node' => ($emailtype == 'page') ? $content->teaser : 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)) {
