DataObjects/Core_person_signup.php
[Pman.Core] / DataObjects / Core_person_signup.php
index 1fec652..ad39178 100644 (file)
@@ -38,8 +38,10 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject
         // copy into person or other entity...
         // and delete....
         //$this->whereAdd("verify_key = '".$key."'");
-        $row = $this->get("verify_key",$key);
-        if(!empty($row)){
+        $row = 
+        var_dump($row);
+        exit();
+        if($this->get("verify_key",$key)){
             $p = DB_DataObject::factory('person');
             $p->honor = $row->honor;
             $p->name = $row->name;
@@ -52,6 +54,7 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject
             //$temp_pwd = mt_rand(100000,999999);
             //$p->passwd = $temp_pwd;
             if($p->insert()){
+                
                 $this->delete();
 
                 //login
@@ -61,15 +64,15 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject
 
                 //mail pwd
                 $htmlStr = "";
-                $htmlStr .= "Dear ".$this->honor.".".$this->lastname."<br /><br />";
-                $htmlStr .= "Congratulations on Joining HydRa.<br /><br />"
+                $htmlStr .= "Dear ".$p->honor.".".$p->lastname."<br /><br />";
+                $htmlStr .= "Congratulations on Joining HydRa.<br /><br />";
                 $htmlStr .= "If you need to access the system again please log in using the password ";
                 $htmlStr .= $temp_pwd; 
 
                 $name = "Roojs";
                 $email_sender = "no-reply@roojs.com";
-                $subject = "Verification Link";
-                $recipient_email = $email;
+                $subject = "Congratulations";
+                $recipient_email = $p->email;
  
                 $headers  = "MIME-Version: 1.0\r\n";
                 $headers .= "Content-type: text/html; charset=utf-8\r\n";
@@ -77,7 +80,11 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject
                 $headers .= "<";
                 $headers .= $email_sender;
                 $headers .= ">\r\n";
-                
+
+                $body = $htmlStr;
+                if(mail($recipient_email, $subject, $body, $headers)){
+                    error_log("Sending failed.");
+                }
             }else{
                 error_log("db insert error");
                 return false;