Home
last modified time | relevance | path

Searched refs:mail (Results 76 – 100 of 716) sorted by last modified time

12345678910>>...29

/plugin/smtp/lang/en/
H A Dintro.txt3 This page allows you to trigger sending a test mail in DokuWiki. You can use it to check if you con…
/plugin/smtp/subtree/txtthinking/Mailer/
H A Dcomposer.lock797 "email": "mail@kore-nordmann.de"
H A DREADME.md4 A lightweight SMTP mail sender
42 $message->setFrom('Tom', 'your@mail.com') // your name, your email
/plugin/smtp/lang/nl/
H A Dintro.txt3 Deze pagina laat je een test e-mail versturen in DokuWiki. Je kunt het gebruiken om te controleren …
/plugin/smtp/lang/pl/
H A Dintro.txt3 Ta strona umożliwia wysyłanie testowej wiadomości e-mail w DokuWiki. Możesz go użyć do sprawdzenia,…
5 Podaj adresy e-mail odbiorcy w poniższym formularzu.
/plugin/smtp/
H A Dadmin.php32 $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/smtp/lang/pt-br/
H A Dintro.txt3 …o de um e-mail de teste no DokuWiki. Você pode usá-lo para verificar se configurou o plug-in SMTP …
/plugin/smtp/lang/da/
H A Dintro.txt3 Denne side tillader dig at udløse sending af en test-mail i DokuWiki. Du kan bruge den til at kontr…
/plugin/embeddedphp/
H A DLICENSE310 Also add information on how to contact you by electronic and paper mail.
/plugin/htmlokalt/
H A DLICENSE220 Also add information on how to contact you by electronic and paper mail.
/plugin/const/
H A DLICENSE310 Also add information on how to contact you by electronic and paper mail.
/plugin/sql2wiki/
H A DLICENSE310 Also add information on how to contact you by electronic and paper mail.
/plugin/approve/
H A DLICENSE310 Also add information on how to contact you by electronic and paper mail.
/plugin/btable2/
H A DLICENSE310 Also add information on how to contact you by electronic and paper mail.
/plugin/structacl/
H A DLICENSE310 Also add information on how to contact you by electronic and paper mail.
/plugin/notification/
H A DLICENSE310 Also add information on how to contact you by electronic and paper mail.
/plugin/notification/action/
H A Dcron.php129 $mail = new Mailer();
131 $mail->to($userinfo['name'].' <'.$userinfo['mail'].'>');
132 $mail->subject($this->getLang('mail subject'));
133 $mail->setBody($text, null, null, $html);
134 $mail->send();
/plugin/keyboard/
H A DCOPYING311 Also add information on how to contact you by electronic and paper mail.
/plugin/deeplautotranslate/
H A DLICENSE310 Also add information on how to contact you by electronic and paper mail.
/plugin/blogtng/db/
H A Dupdate0005.sql12 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/blogtng/entities/
H A DComment.php37 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/blogtng/helper/
H A Dcomments.php267 $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/blogtng/lang/en/
H A Dnotifymail.txt21 This mail was generated by DokuWiki at
/plugin/blogtng/
H A DCOPYING311 Also add information on how to contact you by electronic and paper mail.
/plugin/blogtng/action/
H A Dcomments.php69 $mail = $INPUT->post->str('comment-mail');
70 $comment->setMail($mail ?: $INFO['userinfo']['mail'] ?? '');
102 foreach(array('name', 'mail', 'text') as $field) {
106 } elseif($field == 'mail' && !mail_isvalid($comment->getMail())) {

12345678910>>...29