![]() |
|
| |||||||
| Notices |
| Forms Discussion and help related to designing and implementing forms in the BlueVoda Website Builder. |
![]() |
| | LinkBack | Thread Tools |
|
#1
| |||
| |||
|
Hi all, Just setting up my first website http://www.bunburyvilla.com/bookings.html when I hit submit it goes to my thankyou page, but I recieve no emails at all? Have reread everything and cannot find anything not set up correctly? Im not using the new email address from vodahost - just my usual one. Help please - I need to start taking bookings! Thanks Grant |
|
#2
| ||||
| ||||
|
There might be a number of reasons. The form is ok, so it can be either a wrong email address setup in your php script, or your ISP blocking the mail. If you have a gmail account, change the email address to be your gmail address, or you can setup an email account within your own domain, and see if you recieve the mails through CP or your Outlook Express. It would help if you could post here the php script as you have it in your action.php page.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#3
| |||
| |||
|
Hi - thanks for your reply. Heres my script in beginning of body. What does CP stand for? Cheers Grant <?PHP $mailto = "grant7@tpg.com.au"; $email = $HTTP_POST_VARS['email']; if ($email == "") { $email = $mailto; } $mailsubj = "Bookings"; $mailhead = "From: $email\n"; reset ($HTTP_POST_VARS); $mailbody = "Values submitted from web site form :\n"; while (list ($key, $val) = each ($HTTP_POST_VARS)) { if ($key!="submit") { $mailbody .= "$key : $val\n"; } } mail($mailto, $mailsubj, $mailbody, $mailhead); ?> |
|
#4
| ||||
| ||||
|
CP = Control Panel Try changing the email address to one within your domain. The script and form are correct, so it can only be a ISP blocking the email issue.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#5
| |||
| |||
|
Hi again, Your right - I changed it to gmail address and it worked. Why would my ISP be blocking it then? Can I fix that? I cant really leave it as my gmail address, as I rarely check that mail - unless theres a way to redirect it all?? Thanks for your help! Grant |
|
#6
| ||||
| ||||
|
The easiest thing to do is setup an email address within your own domain, and setup your Outlook Express to recieve the mails straigh in your desktop-
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |