Lines Matching full:email
48 'email' => 'mrabe@marvinrabe.de',
51 'desc' => 'Creates a contact form to email the webmaster. Secured with recaptcha.',
121 * Verify and send email content.´
130 $email = $_POST['email'];
133 $comment .= $email."\r\n\n";
148 // email correctly entered?
149 if(!$this->_check_email_address($email))
150 $this->_set_error('email', $lang["email"]);
172 …if (eregi("\r",$email) || eregi("\n",$email) || eregi("MIME-Version: ",$email || eregi("Content-Ty…
173 $this->_set_error('email', $lang["valid_email"]);
191 if (mail_send($to, $subject, $comment, $email, '', '', 'Reply-to: '.$email)){
214 * Validate email address. From: http://www.ilovejackdaniels.com/php/email-address-validation
216 protected function _check_email_address($email) { argument
219 if (!ereg("^[^@]{1,64}@[^@]{1,255}$", $email)) {
220 // Email invalid because wrong number of characters
225 $email_array = explode("@", $email);
270 $ret .= $this->_table_row($this->getLang("email"), 'email', 'text', $USERINFO['mail']);