Index: simple_paypal.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/simple_paypal/simple_paypal.module,v
retrieving revision 1.1
diff -u -p -r1.1 simple_paypal.module
--- simple_paypal.module	10 Jun 2007 16:00:09 -0000	1.1
+++ simple_paypal.module	14 Aug 2007 15:39:18 -0000
@@ -37,6 +37,13 @@ function simple_paypal_settings() {
     '#options'        => simple_paypal_get_urls(),
     '#description' => t('Select whether you want to use a live URL, or a test one.'),
   );
+  $form[SIMPLE_PAYPAL_EMAIL] = array(
+    '#type'           => 'textfield',
+    '#title'          => t('Paypal Email'),
+    '#size'           => 20,
+    '#default_value'  => variable_get(SIMPLE_PAYPAL_EMAIL, variable_get('site_mail', '')),
+    '#description'    => t('Email account where Paypal payments will be sent'),    
+  );
   return system_settings_form($form);
 }
 
