-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmailform-config.php.template
More file actions
30 lines (28 loc) · 942 Bytes
/
mailform-config.php.template
File metadata and controls
30 lines (28 loc) · 942 Bytes
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
<?php
// allow debugging
;ini_set('display_errors', 'on');
;ini_set('display_startup_errors', 'on');
;error_reporting(E_ALL);
// This may cause problems with local test runs, in case you do not see any test results remove the following line
;die(); // For further security
/*
[mailform]
;;//Please rename this file to mailconfig-config.php in your live setup and adapt all values properly
;;// sender mail address
sender = 'foo@bar.de';
;;// where to send registration data to
recipient = 'foo@buzz.de';
;;// whether to send mails or not, set to true in production deployments
sendmails = false;
;;// target link after mail is sent out
successlinktarget = './index.php'
;;// debug output
debug = false;
;;// path to mail template
requesttemplate = '../../resources/request_template.html'
;;// path to imprint, set to empty if unwanted
pathimprint = './imprint.php'
;;// path to GDPR, set to empty if unwanted
pathgdpr = './dsgvo.php'
;*/
;