Home
last modified time | relevance | path

Searched full:email (Results 1 – 25 of 3317) sorted by relevance

12345678910>>...133

/plugin/groupmail/
DREADME.textile1 h1. Group email plugin
5 using. However, I wanted to use it to send out email to a group of people which
18 * support presetting text for email message
50 …ll create a groupmail form with a "name","email address", "subject" and "comment" field. It will s…
60 p. or email to dokuwiki users (via dokuwiki login names)
64 p. or email to dokuwiki group members (via dokuwiki group names
72 p. Don't allow to override the sender name or email, but use registered user
76 p. Preset a text in the email content:
88 | subject=... | If the subject is specified in the parameters then it is not a field on the email f…
89 | autofrom | If specified, the sender fields are not shown in the email form. |
[all …]
/plugin/twofactoraltemail/
Daction.php8 * 2fa provider using an alternative email address
16 $email = $this->settings->get('email');
17 if ($email) $label .= ': ' . $email;
24 return $this->settings->get('email') &&
32 $email = $this->settings->get('email');
34 if (!$email) {
36 $form->addTextInput('newemail', $this->getLang('email'))->attr('autocomplete', 'off');
56 $this->settings->delete('email');
66 // new email has been, set init verification
67 $this->settings->set('email', $newmail);
[all …]
/plugin/stopforumspam2/
Dhelper.php18 * @param string or array $email - Do nothing about the e-mail address if empty
23 function rawdata($ip = null, $email = null, $username = null, $wildcards = null){ argument
25 if ($ip == null and $email == null and $username == null) return array();
32 'email' => $email,
57 * @param string $email - Do nothing about the e-mail address if empty
61 … FALSE otherwise. The array's components will be values with keys "ip", "email", and "username". …
63 …function freqcheck($ip = null, $email = null, $username = null, $returnvalue = FALSE, $border = nu… argument
67 if ($ip == null and $email == null and $username == null) return FALSE;
74 $resultarray = $this->rawdata($ip, $email, $username);
77 …if (isset($resultarray['email']['frequency'])) $emailfreq = $resultarray['email']['frequency']; el…
[all …]
/plugin/authgoogle/
Dauth.php48 $USERINFO['mail'] = $uinfo['email'];
129 $email = filter_var($user['email'], FILTER_SANITIZE_EMAIL);
131 //$personMarkup = "$email<div><img src='$img?sz=50'></div>";
133 //Check verify email in google
135 msg('Auth Google Error: '.$email.' not verifed in google account');
140 //check email in list allows
141 if (!$this->_check_email_domain($email)) {
142 msg('Auth Google Error: access denied for '.$email);
155 $this->createUser($login, md5(rand().$login), $user['name'], $email, $grps);
157 } elseif ($udata['name'] != $user['name'] || $udata['email'] != $email) {
[all …]
/plugin/combo/resources/theme/default/components/html/
Dsubscribe-form.hbs5 <label for="{{ email-id }}" class="visually-hidden">Enter your email</label>
7 …<input type="email" id="{{ email-id }}" name="{{ email-name }}" class="form-control" placeholder="…
8 autocomplete="email" required="required"/>
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Gmail/Resource/
DUsersSettingsDelegates.php35 * without sending any verification email. The delegate user must be a member of
40 * that a delegate user must be referred to by their primary email address, and
41 * not an email alias. Also note that when a new delegate is created, there may
46 * @param string $userId User's email address. The special value "me" can be
61 * a delegate user must be referred to by their primary email address, and not
62 * an email alias. This method is only available to service account clients that
65 * @param string $userId User's email address. The special value "me" can be
67 * @param string $delegateEmail The email address of the user to be removed as a
79 * their primary email address, and not an email alias. This method is only
83 * @param string $userId User's email address. The special value "me" can be
[all …]
DUsersMessages.php40 * @param string $userId The user's email address. The special value `me` can be
54 * @param string $userId The user's email address. The special value `me` can be
69 * @param string $userId The user's email address. The special value `me` can be
83 * @param string $userId The user's email address. The special value `me` can be
102 * Imports a message into only this user's mailbox, with standard email delivery
109 * @param string $userId The user's email address. The special value `me` can be
114 * @opt_param bool deleted Mark the email as permanently deleted (not TRASH) and
120 * never mark this email as SPAM in the mailbox.
121 * @opt_param bool processForCalendar Process calendar invites in the email and
136 * @param string $userId The user's email address. The special value `me` can be
[all …]
/plugin/stopforumspam/
DResponseChecker.php23 public $email; variable in Response
27 public function __construct($username = null, $email = null, $ip = null) argument
32 if ($email == null) {
33 $email = new ResponseCategory();
39 $this->email = $email;
52 if (isset($response['email'])) {
53 $this->email = $this->ResponseCategoryFromAssoc($response['email']);
114 } else if (($result = $this->categoryIsValid($response->email)) === false) {
115 $this->trigger = "email";
/plugin/contactmodern/
Dsyntax.php48 '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"]);
[all …]
/plugin/smtp/subtree/txtthinking/Mailer/src/
DMailer.php79 * @param string $email
82 public function setFrom($name, $email){ argument
83 $this->message->setFrom($name, $email);
90 * @param string $email
93 public function setFakeFrom($name, $email){ argument
94 $this->message->setFakeFrom($name, $email);
101 * @param string $email
104 public function setTo($name, $email){ argument
105 $this->message->addTo($name, $email);
112 * @param string $email
[all …]
/plugin/authucenter/lib/uc_client/control/
Duser.php67 $email = $this->input('email');
75 if(($status = $this->_check_email($email)) < 0) {
78 $uid = $_ENV['user']->add_user($username, $password, $email, 0, $questionid, $answer, $regip);
87 $email = $this->input('email');
92 if(!$ignoreoldpw && $email && ($status = $this->_check_email($email, $username)) < 0) {
95 …$status = $_ENV['user']->edit_user($username, $oldpw, $newpw, $email, $ignoreoldpw, $questionid, $…
144 return array($status, $user['username'], $password, $user['email'], $merge);
156 $email = $this->input('email');
157 return $this->_check_email($email);
179 return array($status['uid'],$status['username'],$status['email']);
[all …]
/plugin/json/demo/
Djson_usage_demo.txt9 "email": "james.smith@example.com|Salesman email address",
22 "email": "james.smith@example.com|Salesman email address",
61 Variable may be rendered in one of the following formats: code, header, link, email, media, rss or …
69 %$person.email #email#%
71 Email: %$person.email #email#%
105 %$person{"First name":firstName, "Email address":email, "Main car":cars.0.name} #"Email address":em…
107 %$person{"First name":firstName, "Email address":email, "Main car":cars.0.name} #"Email address":em…
/plugin/badbehaviour/bad-behavior/
Dblacklist.inc.php19 "Email Siphon", // spam harvester
21 "grub crawler", // misc comment/email spam
22 "HttpProxy", // misc comment/email spam
61 "; Widows ", // misc comment/email spam
64 "compatible ; MSIE", // misc comment/email spam
65 "compatible-", // misc comment/email spam
66 "DTS Agent", // misc comment/email spam
67 "Email Extractor", // spam harvester
71 "Indy Library", // misc comment/email spam
91 "/^[A-Z]{10}$/", // misc email spam
[all …]
/plugin/authucenter/lib/uc_client/model/
Duser.php36 function get_user_by_email($email) { argument
37 $arr = $this->db->fetch_first("SELECT * FROM ".UC_DBTABLEPRE."members WHERE email='$email'");
92 function check_emailformat($email) { argument
93 …return strlen($email) > 6 && strlen($email) <= 32 && preg_match("/^([a-z0-9\-_.+]+)@([a-z0-9\-]+[.…
96 function check_emailaccess($email) { argument
103 …if(($accessemail && !preg_match($accessexp, $email)) || ($censoremail && preg_match($censorexp, $e…
113 function check_emailexists($email, $username = '') { argument
115 …$email = $this->db->result_first("SELECT email FROM ".UC_DBTABLEPRE."members WHERE email='$email'…
116 return $email;
129 …function add_user($username, $password, $email, $uid = 0, $questionid = '', $answer = '', $regip =… argument
[all …]
Dmail.php37 …$data = $this->db->fetch_all("SELECT m.*, u.username, u.email FROM ".UC_DBTABLEPRE."mailqueue m LE…
40 $data[$k]['tomail'] = empty($v['tomail']) ? $v['email'] : $v['tomail'];
61 foreach($mail['emails'] as $email) {
62 if(empty($email)) continue;
63 …$values_arr[] = "('', '$email', '$mail[subject]', '$mail[message]', '$mail[frommail]', '$mail[char…
77 …$users = $this->db->fetch_all("SELECT uid, username, email FROM ".UC_DBTABLEPRE."members WHERE uid…
79 $mail['email_to'][] = $v['username'].'<'.$v['email'].'>';
81 foreach($mail['emails'] as $email) {
82 if(empty($email)) continue;
83 $mail['email_to'][] = $email;
[all …]
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Property/
DEmailAddressSet.php9 * email-address-set property
11 * This property represents the email-address-set property in the
14 * It's a list of email addresses associated with a user.
41 * Returns the email addresses
72 foreach ($this->emails as $email) {
74 $writer->writeElement('{http://calendarserver.org/ns/}email-address', $email);
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Property/
DEmailAddressSet.php9 * email-address-set property
11 * This property represents the email-address-set property in the
14 * It's a list of email addresses associated with a user.
41 * Returns the email addresses
72 foreach ($this->emails as $email) {
74 $writer->writeElement('{http://calendarserver.org/ns/}email-address', $email);
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
DIMipPlugin.php12 * email-based transport for iTIP. iTIP deals with scheduling operations for
15 * If you want to customize the email that gets sent out, you can do so by
25 * Email address used in From: header.
39 * Creates the email handler.
41 * @param string $senderEmail. The 'senderEmail' is the email that shows up
43 * generally be some kind of no-reply email
95 …e->scheduleStatus = '1.0;We got the message, but it\'s not significant enough to warrant an email';
153 * This function is responsible for sending the actual email.
155 * @param string $to Recipient email address
156 * @param string $subject Subject of the email
[all …]
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
DIMipPlugin.php12 * email-based transport for iTIP. iTIP deals with scheduling operations for
15 * If you want to customize the email that gets sent out, you can do so by
25 * Email address used in From: header.
39 * Creates the email handler.
41 * @param string $senderEmail. The 'senderEmail' is the email that shows up
43 * generally be some kind of no-reply email
95 …e->scheduleStatus = '1.0;We got the message, but it\'s not significant enough to warrant an email';
153 * This function is responsible for sending the actual email.
155 * @param string $to Recipient email address
156 * @param string $subject Subject of the email
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Component/
DVCardTest.php122 EMAIL;TYPE=home:1@example.org
123 EMAIL;TYPE=work:2@example.org
128 $this->assertEquals('1@example.org', $vcard->getByType('EMAIL', 'home')->getValue());
129 $this->assertEquals('2@example.org', $vcard->getByType('EMAIL', 'work')->getValue());
130 $this->assertNull($vcard->getByType('EMAIL', 'non-existant'));
139 EMAIL:1@example.org
140 EMAIL:2@example.org
145 $this->assertEquals('1@example.org', $vcard->preferred('EMAIL')->getValue());
154 EMAIL:1@example.org
155 EMAIL;TYPE=PREF:2@example.org
[all …]
/plugin/oauth/lang/pl/
Dlang.php8 $lang['emailduplicate'] = 'Ten adres email jest już powiązany z innym użytkownikiem.';
10 $lang['authnotenabled'] = 'Konto powiązane z twoim adresem email nie ma włączonego logowania…
14 …['rejectedEMail'] = 'Użyto niedozwolonego adresu email. Dozwolone są tylko adresy email z …
15 $lang['eMailRestricted'] = 'Dozwolone są tylko adresy email z następujących domen: %s';
16 $lang['noEmail'] = 'Serwis %s nie przekazał nam twojego adresu email. Logowanie nie p…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Licensing/Resource/
DLicenseAssignments.php42 * @param string $userId The user's current primary email address. If the user's
43 * email address changes, use the new email address in your API requests. Since
45 * persistent data. This key could break if the current user's email address
63 * @param string $userId The user's current primary email address. If the user's
64 * email address changes, use the new email address in your API requests. Since
66 * persistent data. This key could break if the current user's email address
156 * @param string $userId The user's current primary email address. If the user's
157 * email address changes, use the new email address in your API requests. Since
159 * persistent data. This key could break if the current user's email address
179 * @param string $userId The user's current primary email address. If the user's
[all …]
/plugin/groupmail/lang/fr/
Dlang.php22 $lang["email"] = 'Votre adresse électronique';
35 $lang["error"]["unknown"] = 'Email non envoyé. Merci de contacter votre administrateur.';
37 $lang["error"]["email"] = 'Merci de saisir votre adresse email. Attention celle-ci doit être valide…
39 $lang["error"]["captcha"] = 'Email non envoyé. Vous n’avez pas été vérifié comme étant un humain.';
41 $lang["error"]["valid_email"] = 'Votre adresse email n’est pas valide.';
45 $lang["success"] = 'L’email a été envoyé avec succès.';
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/
Dcomposer.json18 "email": "hello@gjcampbell.co.uk", string
23 "email": "mtdowling@gmail.com", string
28 "email": "gmponos@gmail.com", string
33 "email": "tobias.nyholm@gmail.com", string
38 "email": "mark.sagikazar@gmail.com", string
43 "email": "webmaster@tubo-world.de", string
48 "email": "mark.sagikazar@gmail.com", string
/plugin/oauth/lang/en/
Dlang.php8 $lang['emailduplicate'] = 'This email is already associated with another user.';
10 $lang['authnotenabled'] = 'The account associated with your email address has not enabled logging i…
13 $lang['rejectedEMail'] = 'Invalid eMail-Account used. Only email accounts from the following domain…
14 $lang['eMailRestricted'] = 'Only email accounts from the following domain(s) are allowed: %s';
16 $lang['noEmail'] = '%s service did not provide the an email address. Can\'t log you in.';

12345678910>>...133