-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
34 lines (24 loc) · 1.23 KB
/
config.php
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
<?php
//This is the only required setting. Replace the email address below
//with the email address you'd like to receive the forms at.
$sendToEmail = '[email protected]';
//------------EVERYTHING BELOW THIS POINT IS OPTIONAL---------------
//This is the name of the file to use when no template is passed.
//Useful if you're pointing multiple contacts to the same form.
$templateFile = 'template.txt'; //Default is template.txt
//This is the default page that should show after the information is submitted.
$redirectDestination = NULL; //Default is NULL
//This tells the script wether you want to use reCAPTCHA or not
$recaptchaEnabled = TRUE;
//If you have your own recaptcha pub/priv key enter it here.
//You CAN use the keys provided, but keep in mind they are publicly known.
//
//Default values:
//$recaptchaPubKey = "6LfGEwsAAAAAAEfdb77X7r7gbSJwOlLz44-RW6zA";
//$recaptchaPrivKey = "6LfGEwsAAAAAALlZSbCjaZpUdPhce7w03BAfQMpp";
$recaptchaPubKey = "6LfGEwsAAAAAAEfdb77X7r7gbSJwOlLz44-RW6zA";
$recaptchaPrivKey = "6LfGEwsAAAAAALlZSbCjaZpUdPhce7w03BAfQMpp";
//This is passed as the 5th paramter to the mail function. You can use
//this to specify special paramaters to be used in the sendmail command.
$sendmailParam = "-ODeliveryMode=b";
?>