/plugin/authucenter/lib/uc_client/model/ |
D | mail.php | 53 function add($mail) { argument 54 if($mail['level']) { 57 foreach($mail['uids'] as $uid) { 59 …', '', '$mail[subject]', '$mail[message]', '$mail[frommail]', '$mail[charset]', '$mail[htmlon]', '… 61 foreach($mail['emails'] as $email) { 63 …mail', '$mail[subject]', '$mail[message]', '$mail[frommail]', '$mail[charset]', '$mail[htmlon]', '… 71 $mail['email_to'] = array(); 73 foreach($mail['uids'] as $uid) { 79 $mail['email_to'][] = $v['username'].'<'.$v['email'].'>'; 81 foreach($mail['emails'] as $email) { [all …]
|
/plugin/authucenter/lib/uc_client/lib/ |
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"… 20 …mail['message'] = chunk_split(base64_encode(str_replace("\r\n.", " \r\n..", str_replace("\n", "\r\… 22 …mail['frommail'] == '' ? '=?'.$mail['charset'].'?B?'.base64_encode($appname)."?= <$mail_setting[ma… 24 foreach(explode(',', $mail['email_to']) as $touser) { 25 …$tousers[] = preg_match('/^(.+?) \<(.+?)\>$/',$touser, $to) ? ($mailusername ? '=?'.$mail['charset… 28 $mail['email_to'] = implode(',', $tousers); 30 …Version: 1.0{$maildelimiter}Content-type: text/".($mail['htmlon'] ? 'html' : 'plain')."; charset=$… 36 return @mail($mail['email_to'], $mail['subject'], $mail['message'], $headers); 97 foreach(explode(',', $mail['email_to']) as $touser) { [all …]
|
/plugin/authucenter/lib/uc_client/control/ |
D | mail.php | 25 $mail = array(); 26 $mail['appid'] = UC_APPID; 27 $mail['uids'] = explode(',', $this->input('uids')); 28 $mail['emails'] = explode(',', $this->input('emails')); 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'); [all …]
|
/plugin/swiftmail/ |
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/ |
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/ |
D | mail.php | 87 $mail = new Mailer(); 88 $mail->to($receiver); 89 $mail->subject($subject); 90 $mail->setBody($body); 91 $mail->setHeader("Reply-To", $ReplyTo); 92 $returnStatus = $mail->send(); 198 $mail = new Mailer(); 199 $mail->to($receiver); 200 $mail->subject($subject); 201 $mail->setBody($body); [all …]
|
/plugin/bureaucracy/helper/ |
D | actionmail.php | 27 $mail = new Mailer(); 45 list($table_html, $table_text) = $this->processFieldsBuildTable($fields, $mail); 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()) { [all …]
|
/plugin/bureaucracy-au/helper/ |
D | actionmail.php | 27 $mail = new Mailer(); 39 list($table_html, $table_text) = $this->processFieldsBuildTable($fields, $mail); 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()) { [all …]
|
/plugin/bureaucracyau/helper/ |
D | actionmail.php | 27 $mail = new Mailer(); 39 list($table_html, $table_text) = $this->processFieldsBuildTable($fields, $mail); 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()) { [all …]
|
/plugin/oauthosm/ |
D | action.php | 34 $mail = DotAccess::get($result, $this->getConf('json-mail'), ''); 40 if (is_array($mail)) $mail = array_shift($mail); 50 } elseif (!empty($mail)) { 51 list($user) = explode('@', $mail); 61 $mail .= "@openstreetmap.org";
|
/plugin/zip/pear/File/Archive/Writer/ |
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/ |
D | comments.php | 267 $mail = new Mailer(); 268 $mail->bcc($mails); 269 $mail->subject($title); 270 $mail->setBody($atext, $repl); 271 $mail->send(); 294 $mail = new Mailer(); 295 $mail->to($row['mail']); 296 $mail->subject($title); 297 $mail->setBody($stext, $repl); 298 $mail->send(); [all …]
|
/plugin/struct/types/ |
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/ |
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)),
|
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/ |
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/oauthgeneric/ |
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);
|
/plugin/blogtng/db/ |
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
|
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
|
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'
|
/plugin/loglog/helper/ |
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/twofactoremail/ |
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/shibbolethauth/files/ |
D | shibboleth.class.php | 156 …$USERINFO['mail'] = $mail = $_SERVER[$conf['plugin']['shibbolethauth']['shibbolethEmailAttribute']… 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]; [all …]
|
/plugin/blogtng/entities/ |
D | Comment.php | 37 private $mail; variable in dokuwiki\\plugin\\blogtng\\entities\\Comment 175 echo hsc($this->mail); 215 } elseif ($this->mail) { 326 return $this->mail; 330 * @param string $mail 332 public function setMail($mail) argument 334 $this->mail = $mail;
|
/plugin/oauth/ |
D | auth.php | 84 public function createUser($user, $pwd, $name, $mail, $grps = null) argument 86 if ($this->getUserByEmail($mail)) { 91 return parent::createUser($user, $pwd, $name, $mail, $grps); 191 public function getUserByEmail($mail) argument 196 $mail = strtolower($mail); 199 if (strtolower($userinfo['mail']) === $mail) return $user;
|