/plugin/authucenter/lib/uc_client/model/ |
H A D | mail.php | 53 function add($mail) { argument 54 if($mail['level']) { 59 …', '', '$mail[subject]', '$mail[message]', '$mail[frommail]', '$mail[charset]', '$mail[htmlon]', '… 63 …mail', '$mail[subject]', '$mail[message]', '$mail[frommail]', '$mail[charset]', '$mail[htmlon]', '… 85 $mail['message'] = str_replace('\"', '"', $mail['message']); 86 $mail['email_to'] = implode(',', $mail['email_to']); 97 $mail = $this->_get_mail(); 98 if(empty($mail)) { 102 $mail['email_to'] = $mail['tomail'] ? $mail['tomail'] : $mail['username'].'<'.$mail['email'].'>'; 122 if(empty($mail)) return; [all …]
|
/plugin/authucenter/lib/uc_client/lib/ |
H A D | sendmail.inc.php | 18 $appname = $this->base->cache['apps'][$mail['appid']]['name']; 19 $mail['subject'] = '=?'.$mail['charset'].'?B?'.base64_encode(str_replace("\r", '', str_replace("\n"… 22 …mail['frommail'] == '' ? '=?'.$mail['charset'].'?B?'.base64_encode($appname)."?= <$mail_setting[ma… 24 foreach(explode(',', $mail['email_to']) as $touser) { 28 $mail['email_to'] = implode(',', $tousers); 36 return @mail($mail['email_to'], $mail['subject'], $mail['message'], $headers); 97 foreach(explode(',', $mail['email_to']) as $touser) { 119 fputs($fp, "To: ".$mail['email_to']."\r\n"); 120 fputs($fp, "Subject: ".$mail['subject']."\r\n"); 123 fputs($fp, "$mail[message]\r\n.\r\n"); [all …]
|
/plugin/authucenter/lib/uc_client/control/ |
H A D | mail.php | 25 $mail = array(); 26 $mail['appid'] = UC_APPID; 27 $mail['uids'] = explode(',', $this->input('uids')); 29 $mail['subject'] = $this->input('subject'); 30 $mail['message'] = $this->input('message'); 31 $mail['charset'] = $this->input('charset'); 32 $mail['htmlon'] = intval($this->input('htmlon')); 33 $mail['level'] = abs(intval($this->input('level'))); 34 $mail['frommail'] = $this->input('frommail'); 35 $mail['dateline'] = $this->time; [all …]
|
/plugin/swiftmail/ |
H A D | admin.php | 32 $mail = new Mailer(); 33 if($INPUT->str('to')) $mail->to($INPUT->str('to')); 34 if($INPUT->str('cc')) $mail->to($INPUT->str('cc')); 35 if($INPUT->str('bcc')) $mail->to($INPUT->str('bcc')); 36 $mail->subject('SwiftMail Plugin says hello'); 37 $mail->setBody("Hi @USER@\n\nThis is a test from @DOKUWIKIURL@"); 38 $ok = $mail->send();
|
/plugin/smtp/ |
H A D | admin.php | 32 $mail = new Mailer(); 33 if($INPUT->str('to')) $mail->to($INPUT->str('to')); 34 if($INPUT->str('cc')) $mail->cc($INPUT->str('cc')); 35 if($INPUT->str('bcc')) $mail->bcc($INPUT->str('bcc')); 36 $mail->subject('DokuWiki says hello'); 37 $mail->setBody("Hi @USER@\n\nThis is a test from @DOKUWIKIURL@"); 38 $ok = $mail->send();
|
/plugin/publish/action/ |
H A D | mail.php | 36 * @return bool false if the receiver is invalid or there was an error passing the mail to the MTA 48 // IO_WIKIPAGE_WRITE is always called twice when saving a page. This makes sure to only send the mail once. 63 // get mail receiver 70 // get mail sender 71 $ReplyTo = $INFO['userinfo']['mail']; 81 // get mail subject 87 $mail = new Mailer(); 88 $mail->to($receiver); 89 $mail->subject($subject); 90 $mail [all...] |
/plugin/bureaucracy-au/helper/ |
H A D | actionmail.php | 27 $mail = new Mailer(); 59 $mail->setBody($this->_mail_text,null,null,$this->_mail_html); 63 $replyto = $mail->cleanAddress($this->replyto); 64 $mail->setHeader('Reply-To', $replyto, false); 69 $to = $mail->cleanAddress($to); 70 $mail->to($to); 73 $mail->from($conf['mailfrom']); 77 $mail->subject($this->subject); 79 if(!$mail->send()) { 90 * @param Mailer $mail [all …]
|
/plugin/bureaucracyau/helper/ |
H A D | actionmail.php | 27 $mail = new Mailer(); 59 $mail->setBody($this->_mail_text,null,null,$this->_mail_html); 63 $replyto = $mail->cleanAddress($this->replyto); 64 $mail->setHeader('Reply-To', $replyto, false); 69 $to = $mail->cleanAddress($to); 70 $mail->to($to); 73 $mail->from($conf['mailfrom']); 77 $mail->subject($this->subject); 79 if(!$mail->send()) { 90 * @param Mailer $mail [all …]
|
/plugin/bureaucracy/helper/ |
H A D | actionmail.php | 27 $mail = new Mailer(); 65 $mail->setBody($this->_mail_text,null,null,$this->_mail_html); 69 $replyto = $mail->cleanAddress($this->replyto); 70 $mail->setHeader('Reply-To', $replyto, false); 75 $to = $mail->cleanAddress($to); 76 $mail->to($to); 79 $mail->from($conf['mailfrom']); 83 $mail->subject($this->subject); 85 if(!$mail->send()) { 99 * @param Mailer $mail [all …]
|
/plugin/zip/pear/File/Archive/Writer/ |
H A D | Mail.php | 51 var $mail; variable in File_Archive_Writer_Mail 84 * @param Mail $mail Object used to send mail (see Mail::factory) 91 function File_Archive_Writer_Mail($to, $headers, $message, &$mail) argument 99 if ($mail === null) 100 $this->mail = Mail::factory("mail"); 102 $this->mail =& $mail; 190 if (!$this->mail->send(
|
/plugin/blogtng/helper/ |
H A D | comments.php | 267 $mail = new Mailer(); 268 $mail->bcc($mails); 269 $mail->subject($title); 271 $mail->send(); 294 $mail = new Mailer(); 296 $mail->subject($title); 298 $mail->send(); 320 $mail = new Mailer(); 321 $mail->to($email); 322 $mail->subject($title); [all …]
|
/plugin/struct/types/ |
H A D | Mail.php | 24 $mail = $this->config['prefix'] . $value . $this->config['postfix']; 25 $R->emaillink($mail); 39 $mail = $this->config['prefix'] . $rawvalue . $this->config['postfix']; 40 if (!mail_isvalid($mail)) { 41 throw new ValidationException('Mail invalid', $mail);
|
/plugin/discussion/ |
H A D | convert.php | 120 list($mail, $meta) = explode($in, $meta, 2); 124 if ($mail) { 125 list($mail) = explode(' |', $mail, 2); 126 $mail = substr(strrchr($mail, '>'), 1); 137 'mail' => hsc($mail)),
|
H A D | script.js | 35 if (isBlank(form.mail.value) || form.mail.value.indexOf("@") == -1){ 36 form.mail.focus(); 37 form.mail.style.backgroundColor = '#fcc'; 40 form.mail.style.backgroundColor = '#fff';
|
/plugin/form/ |
H A D | syntax.php | 813 if (is_file($this->mailPath.'mail.tmp')) { 874 if (is_file($this->mailPath.'mail.tmp')) { 906 if (is_file($this->mailPath.'mail.tmp')) { 935 if (is_file($this->mailPath.'mail.tmp')) { 997 if (is_file($this->mailPath . 'mail.tmp')) { 1067 $this->writebefore($this->mailPath.'mail.tmp', $constraint); 1069 …// file_put_contents($mailFilePath . 'mail.tmp', $mail, FILE_APPEND) or die("Could not write to ma… 1070 $f = fopen($this->mailPath.'mail.tmp','a') or die($this->getLocalLang('cannot_open'));
|
/plugin/blogtng/db/ |
H A D | update0003.sql | 3 mail, field 4 PRIMARY KEY (pid, mail) 7 CREATE INDEX idx_subscriptions_mail ON subscriptions(mail); 10 mail PRIMARY KEY, field
|
H A D | update0005.sql | 12 mail field 15 SELECT pid, page, title, blog, image, created, lastmod, author, login, mail 30 mail, field 39 SELECT pid, page, title, blog, image, created, lastmod, author, login, mail, 'enabled'
|
H A D | update0004.sql | 7 mail, field 15 SELECT cid, pid, source, name, mail, web, avatar, created, text, status 25 mail, field 38 SELECT cid, pid, source, name, mail, web, avatar, created, text, status, null 72 mail, field
|
/plugin/loglog/helper/ |
H A D | main.php | 67 $mail = new Mailer(); 68 $mail->to($email); 69 $mail->subject($subject); 70 $mail->setBody($text, $textrep, null, $html); 71 return $mail->send();
|
/plugin/avatar/ |
H A D | helper.php | 18 'user or mail' => 'string', 50 $mail = $user['mail']; 54 $mail = $user; 73 if (empty($src)) $mail = $userinfo['mail']; 77 $seed = md5(dokuwiki\Utf8\PhpString::strtolower($mail)); 96 if (mail_isvalid($mail)){ 110 if (!$title) $title = obfuscate($mail);
|
/plugin/twofactoremail/ |
H A D | action.php | 65 $mail = new Mailer(); 66 $mail->to($to); 67 $mail->subject($this->getLang('subject')); 68 $mail->setBody($body, ['CODE' => $code]); 69 $result = $mail->send();
|
/plugin/oauthgeneric/ |
H A D | action.php | 35 $mail = DotAccess::get($result, $this->getConf('json-mail'), ''); 48 if (is_array($mail)) $mail = array_shift($mail); 58 } elseif (!empty($mail)) { 59 list($user) = explode('@', $mail); 68 return compact('user', 'name', 'mail', 'grps');
|
/plugin/genericsso/ |
H A D | auth.php | 223 private function _setSession(string $user, array $grps = null, string $mail = null, string $name = null): void { 228 $USERINFO['mail'] = $mail ?: (mail_isvalid($user) ? $user : null); 305 'mail' => $row[3], 313 $data = ['name' => $user, 'mail' => $user, 'grps' => []]; 318 $data = ['name' => $attrs['fullname'], 'mail' => $attrs['email'], 'grps' => []]; 107 setSession($user, $grps = null, $mail = null, $name = null) global() argument
|
/plugin/oauth/ |
H A D | auth.php | 62 public function createUser($user, $pwd, $name, $mail, $grps = null) argument 64 if ($this->getUserByEmail($mail)) { 69 return parent::createUser($user, $pwd, $name, $mail, $grps); 81 if (isset($changes['mail'])) { 82 $found = $this->getUserByEmail($changes['mail']); 149 $userinfo['mail'], 159 $subscriptionSender->sendRegister($user, $userinfo['name'], $userinfo['mail']); 167 * @param $mail 170 public function getUserByEmail($mail) argument 175 $mail [all...] |
/plugin/shibbolethauth/files/ |
H A D | shibboleth.class.php | 209 $users = $this->setUserGroups($mail,$grps); 285 $mail=$user; 336 $users = $this->setUserGroups($mail,$grps); 352 function setUserGroups($mail,$grps){ argument 354 if($user['mail'] == $mail){ 381 $this->users[$mail]['name'] = $mail; 382 $this->users[$mail]['mail'] = $mail; 383 $this->users[$mail]['grps'] = $grps; 384 return $this->users[$mail]; 421 function createUser($user,$pwd,$name,$mail,$grps=null){ argument [all …]
|