I’d like to see to give my customers the opportunity of filling out a questionnaire on my website www. moreblingforyourbuck. com. I’d like to see to let these people submit any demands for jewelry or gather a certain piece they can’t find anywhere otherwise. How do I create a real form that they can fill out along with send directly to help my e-mail
A person’s webhost is Google.
I’m pretty sure many people allow PHP scripting, but I’m not
convinced if (or how) they will allow sending e-mail using PHP.
That question has to be answered first.
And so, here’s an experiment you can test.
1) message and paste the particular script below straight into notepad
and save it seeing that " test. php".
2) change that email address for your own… (recipient).
3) publish that file " test. php" into your blog in
your primary directory.
4) type: http: //www. moreblingforyourbuck. com/test. php
and examine if you get an email.
Recommendations " test. php":
< php
// Put your own email address on the next tier.
$recipient = "youremailaol. com";
$sender = "johndoenoreply. com";
$subject = "PHP Email Test";
$message = "
This is an email test from my webhost
---------------------------------------------------
This is a test ... to see if I get this contact.
---------------------------------------------------
";
$extraheaders = "From: $sender\nReply-To: $sender\n\n";
if (!
mail($recipient, $subject, $message, $extraheaders))
echo "Mail did not send for some motive. ";
echo
"sent";
>
.