Index: trunk/wb/admin/login/forgot/index.php
===================================================================
--- trunk/wb/admin/login/forgot/index.php	(revision 299)
+++ trunk/wb/admin/login/forgot/index.php	(revision 300)
@@ -96,7 +96,7 @@
 	
 	If you have received this message in error, please delete it immediatly.';
 				// Try sending the email
-				if(mail($mail_to, $mail_subject, $mail_message, 'From: '.SERVER_EMAIL)) {
+				if($wb->mail('From: '.SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) { 
 					$message = $MESSAGE['FORGOT_PASS']['PASSWORD_RESET'];
 					$display_form = false;
 				} else {
Index: trunk/wb/account/forgot_form.php
===================================================================
--- trunk/wb/account/forgot_form.php	(revision 299)
+++ trunk/wb/account/forgot_form.php	(revision 300)
@@ -87,7 +87,7 @@
 
 If you have received this message in error, please delete it immediatly.';
 				// Try sending the email
-				if(mail($mail_to, $mail_subject, $mail_message)) {
+				if($wb->mail('',$mail_to,$mail_subject,$mail_message)) { 
 					$message = $MESSAGE['FORGOT_PASS']['PASSWORD_RESET'];
 					$display_form = false;
 				} else {
Index: trunk/wb/account/signup2.php
===================================================================
--- trunk/wb/account/signup2.php	(revision 299)
+++ trunk/wb/account/signup2.php	(revision 300)
@@ -126,7 +126,7 @@
 If you have recieved this message in error, please delete it immediatly.';
 
 	// Try sending the email
-	if(mail($mail_to, $mail_subject, $mail_message, 'From: '.SERVER_EMAIL)) {
+	if($wb->mail('From: '.SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) { 
 		$wb->print_success($MESSAGE['FORGOT_PASS']['PASSWORD_RESET'], WB_URL.'/account/login'.PAGE_EXTENSION);
 		$display_form = false;
 	} else {
