-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathadmin.php
More file actions
78 lines (64 loc) · 1.95 KB
/
Copy pathadmin.php
File metadata and controls
78 lines (64 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
use dokuwiki\Extension\AdminPlugin;
use dokuwiki\Form\Form;
/**
* Swiftmail Plugin
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Andreas Gohr <andi@splitbrain.org>
*/
class admin_plugin_smtp extends AdminPlugin
{
/**
* return sort order for position in admin menu
*/
public function getMenuSort()
{
return 200;
}
/**
* handle user request
*/
public function handle()
{
global $INPUT;
global $conf;
if (!$INPUT->bool('send')) return;
// make sure debugging is on;
$conf['plugin']['smtp']['debug'] = 1;
// send a mail
$mail = new Mailer();
if ($INPUT->str('to')) $mail->to($INPUT->str('to'));
if ($INPUT->str('cc')) $mail->cc($INPUT->str('cc'));
if ($INPUT->str('bcc')) $mail->bcc($INPUT->str('bcc'));
$mail->subject('DokuWiki says hello');
$mail->setBody("Hi @USER@\n\nThis is a test from @DOKUWIKIURL@");
$ok = $mail->send();
// check result
if ($ok) {
msg('Message was sent. SMTP seems to work.', 1);
} else {
msg('Message wasn\'t sent. SMTP seems not to work properly.', -1);
}
}
/**
* Output HTML form
*/
public function html()
{
global $INPUT;
global $conf;
echo $this->locale_xhtml('intro');
if (!$conf['mailfrom']) msg($this->getLang('nofrom'), -1);
$form = new Form();
$form->addClass('plugin_smtp_admin');
$form->addFieldsetOpen('Testmail');
$form->setHiddenField('send', 1);
$form->addTextInput('to', 'To:')->val($INPUT->str('to'));
$form->addTextInput('cc', 'Cc:')->val($INPUT->str('cc'));
$form->addTextInput('bcc', 'Bcc:')->val($INPUT->str('bcc'));
$form->addButton('submit', 'Send Email')->attr('type', 'submit');
$form->addFieldsetClose();
echo $form->toHTML();
}
}