Index: branches/dev/html/admin/mail/sendmail.php
===================================================================
--- branches/dev/html/admin/mail/sendmail.php	(revision 12891)
+++ branches/dev/html/admin/mail/sendmail.php	(revision 12910)
@@ -91,9 +91,13 @@
 				
 				//SMTP¥µ¡¼¥Ð
-				$mail_options = array(
-				                       'host'    => '210.188.254.83',
-				                       'port'    => 25
-				                                                        );
-				$mail_object =& Mail::factory("SMTP", $mail_options);
+				$mail_send = array(
+                                 'host' => 'mail.example.org',
+                                 'port' => '25',
+                                 'auth' => false,
+                                 'username' => '',
+                                 'password' => '',
+                                );
+				
+				$mail_object =& Mail::factory("SMTP", $mail_send);
 				$mail_object->send($to, $header, $body);
 			}
