Lines Matching refs:email
172 $auth_user->email = isset($_POST['in']['email']) ? $_POST['in']['email'] : '';
271 * @param string $txt the email address to be obfuscated
274 * @return string the altered email address
1008 $email = $in['assign'] . '@php.net';
1011 if ($email == $from) {
1016 $email,
1078 $email = spam_protect($row[1], 'text');
1079 $output .= "[{$row[0]}] {$email}\n\n{$row[2]}\n\n{$divider}\n";
1091 $email = spam_protect($row[1], 'text');
1096 {$output}[{$row[0]}] {$email}
1154 function is_valid_email($email, $phpnet_allowed = true) argument
1157 if (false !== stripos($email, '@php.net')) {
1161 return (bool)filter_var($email, FILTER_VALIDATE_EMAIL);
1358 function unsubscribe_hash($bug_id, $email) argument
1363 $hash = crypt($email . $bug_id, $now);
1372 $affected = $dbh->prepare($query, null, null)->execute([$hash, $bug_id, $email]);
1393 $email,
1654 * @param string $email the email address to make the link for
1661 function make_mailto_link($email, $linktext = '', $extras = '') argument
1664 for ($i = 0, $l = strlen($email); $i<$l; $i++) {
1666 $tmp .= '&#' . ord($email[$i]) . ';';
1668 $tmp .= '&#x' . dechex(ord($email[$i])) . ';';