define("WEBMASTER_EMAIL","");<br/>
$from_Email = "garglawfirm@gmail.com";<br/>
//send email to the client...
$subject = "Trademark Registration Request";<br/>
$message = "Hi ".$client_applicantName.",<br/>
Your request for Trademark Registration has been received. We will Proceed it!.. 
 Your Request Id is: ".$lastInserId." and Applicant Type is: ".$client_applicantType."
Sent by <a href='http://www.glf.gssltd.co.in'>Garg Law Firm"; 
$send = @mail(WEBMASTER_EMAIL, $subject, $message,
       "To: ".$client_applicantEmail."\r\n"
      ."From: ".$from_Email."\r\n"
      ."Return-path: ".$client_applicantEmail."\r\n"
      ."MIME-Version: 1.0\r\n"
      ."Content-type: text/html; charset=iso-8859-1\r\n");<br/>
if($send){<br/>
       echo "<script type='text/javascript'>";<br/>
       echo "alert('Client Details Successfully Saved. Mail Sent To Your Email-Id.');window.location.href='http://glf.gssltd.co.in/search-trademark-app'";<br/>
       echo "</script>";<br/>    
      }else{<br/>
          echo "<script type='text/javascript'>";<br/>
          echo "alert('Unable to Save Client Details.');";<br/>
          echo "</script>";<br/>
      }
 
    