When submitting a form it's usually good practice to check if you're actually getting values before trying to use them. In your case, emailing them. You can use [man]isset/man to see if $REQUEST['emails'] and $REQUEST['pass'] are set or not, and then take appropriate action if they are not. Also I would consider using $POST instead of $REQUEST especially since you have designated the form to use $POST, and keep in mind the $REQUEST superglobal is a combination of both $GET and $POST, which could possibly lead to security concerns.
Additionally I would consider using <label></label> tags for your field labels since that is their intended use (and I believe are required for passing certain standards, such as accessibility standards).
And lastly, please consider the implications of sending plain-text passwords through email.