- 10,832
I trying to cnfigure a free form processor I'd like to use on a website. I've downloaded what looks like a decent one, but the cinfiguration instructions are either not thorough enough, or I just don't understand.
Here are my questions:
1. What are the differences between using $SMTP or $sendmail (advantages / disadvantages).
2. How can I tell what the path to sendmail on my server is?
3. Is there a PHP solution to form processing?
This is the part I'm trying to configure. Any help would be greatly appreciated:
Here are my questions:
1. What are the differences between using $SMTP or $sendmail (advantages / disadvantages).
2. How can I tell what the path to sendmail on my server is?
3. Is there a PHP solution to form processing?
This is the part I'm trying to configure. Any help would be greatly appreciated:
Code:
## $sendto and $ccto is Where form submissions will be sent, ##
## (REMEMBER THE \ BEFORE THE @ SIGN example: \@) ##
## $sendto = "sendto\@yourdomain.com"; CORRECT WAY!!!! ##
## $sendto = "sendto@yourdomain.com"; WILL NOT WORK!!!! ##
$sendto = "milefile\@*******"; ## (REMEMBER THE \ BEFORE THE @ SIGN)##
$ccto = "milefile2\@*******"; ## (REMEMBER THE \ BEFORE THE @ SIGN)##
## $mailprog Is the path to sendmail or your SMTP server - on your server or web space ##
$useLib = "smtp";
$smtp = "smtp.************";
## to use @okurls to verify the url the form is submited by; set $setokurl to 1 and ##
## set $setokurl to 0 if you do not want to use @okurls to verfiy form submission URL ##
$setokurl = "0";
@okurls = ("http://www.yourdomain.com", "http://yourdomain.com", "34.344.344.344");