Index: pontomail_sendmail.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/pontomail/pontomail_sendmail.module,v
retrieving revision 1.23
diff -u -r1.23 pontomail_sendmail.module
--- pontomail_sendmail.module	21 Aug 2006 08:20:15 -0000	1.23
+++ pontomail_sendmail.module	20 Sep 2006 14:35:05 -0000
@@ -246,7 +246,7 @@
 function pontomail_sendmail_form(&$node) {
   global $user;
   $edit = $_POST['edit'];
-  $node->date = format_date(time(), 'long');
+  $node->date = format_date(time(), 'custom', 'Y-m-d H:i:s O');
 
   if ($account = user_load(array('uid' => arg(1), 'status' => 1)) || arg(2) == 'pontomail_sendmail' || arg(0) == 'pontomail') {
     if (!$account->contact && !user_access('administer users')) {
@@ -401,7 +401,7 @@
         $form[$name] = array('#type' => 'value', '#value' => 'value');
       }
     }
-    $form['date'] = array('#type' => 'hidden', '#value' => format_date(time(), 'long'));
+    $form['date'] = array('#type' => 'hidden', '#value' => format_date(time(), 'custom', 'Y-m-d H:i:s O'));
   }
   return;
 }
