Home
last modified time | relevance | path

Searched refs:email (Results 1 – 11 of 11) sorted by relevance

/web-master/include/
H A Demail-validation.inc5 function clean_antispam($email)
8 return preg_replace($remove_spam, "", trim($email));
11 // Try to check that this email address is valid
12 function is_emailable_address($email)
16 $excluded_hosts = preg_match($hosts_regex, $email);
18 if (!$excluded_hosts && !empty($email)) {
19 return filter_var($email, FILTER_VALIDATE_EMAIL) == $email;
H A Dmailer.php11 public $email; variable in MailAddress
14 public function __construct($email, $name = '') { argument
15 $this->email = $email;
32 $mail->addReplyTo($replyTo->email, $replyTo->name);
34 $mail->setFrom($from->email, $from->name);
H A Dfunctions.inc316 …mail($userinfo["email"], "VCS Account Request: $userinfo[username]", $message, "From: PHP Group <g…
342 …mail($userinfo['email'],"VCS Account Request: $userinfo[username]",$message,"From: PHP Group <grou…
439 $query = "SELECT userid FROM users WHERE userid = ? AND (email = ? OR username = ?)";
451 "SELECT * FROM users LEFT JOIN users_note USING (userid) WHERE username = ? OR email = ?",
458 if (!empty($in['email']) && strlen($in['email']) && !is_emailable_address($in['email'])) {
459 return "'". hsc($in['email']) ."' does not look like a valid email address";
H A Demail-templates.inc17 The $userinfo[username]@php.net forward to $userinfo[email] should
/web-master/entry/
H A Dsvn-account.php12 if (empty($name) || empty($email) || empty($username) || empty($passwd) || empty($note) || empty($g…
66 if (!is_emailable_address($email))
77 if (db_query_safe($query, [$name, $email, $svnpasswd, $username])) {
86 $from = "\"$name\" <$email>";
103 "Email: $email\n".
106 "From: \"VCS Account Request\" <$email>");
H A Devent.php30 if (empty($sdesc) || empty($email) || empty($country) || empty($category) || empty($type) || empty(…
47 …db_query_safe($query, ["$syear-$smonth-$sday", $sdesc, $url, $email, $ldesc, $country, $category]);
67 … "$syear-$smonth-$sday", "$eyear-$emonth-$eday", $sdesc, $url, $email, $ldesc, $country, $category
79 db_query_safe($query, ["$recur:$recur_day", $sdesc, $url, $email, $ldesc, $country, $category]);
/web-master/
H A Dusers.sql10 /* the users table is the main one. it contains the name, email, and
13 /* we have a full-text index on name, username and email for searching, and we
14 require unique email addresses for each account. the username must also
16 /* a user will be able to change the email address associated with
20 an email alias in addition to cvs access. */
31 email varchar(255) NOT NULL default '', field
48 UNIQUE KEY email (email),
50 FULLTEXT KEY name (name,email,username)
H A Devent.sql12 email varchar(128) NOT NULL default '',
24 FULLTEXT KEY sdesc (sdesc,ldesc,email)
H A Dgithub-webhook.php20 foreach ($repos as $repoPrefix => $email) {
22 $to = $email;
45 $to, $from->name, $from->email, $subject, $message);
/web-master/manage/
H A Duser-notes.php584 … $email = (isset($_POST['email']) ? html_entity_decode($_POST['email'],ENT_QUOTES) : $row['user']); variable
588 …=?,sect=?,updated=NOW() WHERE id=?', [html_entity_decode($note,ENT_QUOTES), $email, $sect, $id])) {
596 …note_mail_user($email, "note $id moved from $row[sect] to $sect by notes editor $cuser", "----- Co…
608 hsc($email),"</span></p>";
620 <td><input type="text" name="email" value="<?= hsc($email) ?>" size="30" maxlength="80" /></td>
/web-master/vendor/michelf/php-markdown-extra/
H A DPHP Markdown Extra Readme.text197 To file bug reports please send email to:
239 * Now accepting many valid email addresses in autolinks that were
572 * Added support for internationalized domain names for email addresses in
573 automatic link. Improved the speed at which email addresses are converted
576 * Made deterministic the conversion to entities of email addresses in
577 automatic links. This means that a given email address will always be

Completed in 61 milliseconds