Sean -
One more problem. I want to include a contact form on my website. I tried it with version 1, including make the required change in the package contents. After I uploaded the pages to my server (which does have PHP support), if you try to send a form, this message appears: Can't send email to
lsquinn@optonline.net. In this case, the listed email address is one of mine that was entered in the YOUR EMAIL ADDRESS box. So for now I opted not to use the form. Then I tried a test site with the form. I uploaded the test, with the same results, when I remembered that I am now using version 1.01, and has not made the changes to it. So again I went to the application, and opened the package (I use OS X 10.5). Double click on mail.html and the following code is listed. As you can see, there is no place to enter my email address. Please advise if I am doing something wrong. Thanks.
Back"; } elseif ($subject == "") { echo "
Your mail has no subject. Please press Back and try again!
"; echo "Back"; } elseif ($from == "") { echo "
You've not entered a name. Can you press back and enter it please!
"; echo "Back"; } elseif (mail($recipient,$subject,$message,$replyto)) { echo "
Thank you for sending email
"; echo "Back"; } else { echo "
Can't send email to $email
"; } ?>