/*
//================================================================================
* phphq.Net Custom PHP Scripts *
//================================================================================
:- Script Name: phMailer
:- Version: 1.5
:- Release Date: Jan 27th 2004
:- Last Update: Dec 9th 2005
:- Author: Scott L. <scott@phphq.net> http://www.phphq.net
:- Copyright (c) 2005 All Rights Reserved
:-
:- This script is freeware. Permission is granted to copy and distribute this
:- program so long as it is not modified in any way and no fees are exchanged.
:- All copyright text must remain visible and unmodified.
//================================================================================
* Description
//================================================================================
:- phMailer is a very simple php mail script. It can be used on your site as a contact form. This is very helpful if you want your visitors to be
:- able to contact you without them knowing your real email address. On great feature of this script is the ability to allow users
:- to attach multiple files when sending an email directly from your site. Of course, you can disable this feature if you wish.
:- Any file type is accepted as long as they are included in your file extension list. Another popular use for a php email form is 
:- protection against spam bots. Spam, is a major downside of email, and placing your email publicly on your website is asking
:- for spam. Spam bots can take your email address right off your site and add it to thousands of spam databases, resulting in a 
:- never ending supply of spam for you. I coded this script, because I couldn't find a simple mail script that would allow my visitors
:- to send me attachments while keeping my email hidden from spam bots. Enjoy another easy but advanced script from phphq.Net Customs!
//================================================================================
* Setup
//================================================================================
:- To setup this script, simply drop this file anywhere in your website. Then edit the variables in phMailer.php (Variables can be found below this readme).
//================================================================================
* Frequently Asked Questions
//================================================================================
:- Q1: I never receive any mail, but people say they have emailed me through the form.
:-		A1: Try the mailtest.php file that came with this script. If that fails, then mail() is not setup right. Please contact your host
:-		A2: Did you change anything within the file? Are you sure your email is correct?
:-		A3: Try using the form with $allowattach set to 0. It could be your mail server rejecting the mail because of attachments.
:-		A4: If you are on windows, make sure your SMTP is set to your mail server. If you are on Linux, make sure your sendmail path if correct. Again, ask your host.
:-
:- Q2: I never receive any attachments.
:-		A1: Maybe your server has some security against uploading files or sending attachments through mail, check with your host on this issue. This script does send attachments, it's been tested many times on many different platforms and versions of php with safe mode on and off.
:-		A2: Maybe the files people are submitting are too big. Check php.ini for the post_max_size, max_upload_size, you may have to check with your host on this.
:-
:- Q3: The page takes forever to load and then times out bringing me to a page cannot be displayed! Stupid script!
:-		A1: This is usually due to a low value in php.ini for max_execution_time. Ask your host to increase the value. Be aware that the time needed depends on the size the file(s) users are sending and the speed of THERE internet connection for uploading the files. If they are on 56k uploading 1mb will take forever, so the value may need to be set very high!
:-		A2: You really can have as many attachments as you want. I tested up to 10 attachments on Windows 2003 Server / XP & Red Hat 9/ Enterprise Linux 3/4. Several reasons could cause this. Your mail server could be rejecting that many at one time, your post_max_size in php.ini might be set to low. Contact your host to resolve this.
:-
:- Q4: How do I edit the colors of the form?
:-		A1: Due to many requests I used CSS instead of hard coding it into the php. I also made it easier to understand. The only bad part is if you are extremely novice you may have problems editing the CSS. Check http://www.w3schools.com/css/default.asp to brush up on CSS to change the colors of this script. The CSS is located near the end of this script.
:-
:- Q5: Can I add more fields for the users to enter information in?
:-		A1: That's the beauty of php! It's open source, you can edit it all you want, change whatever you don't like etc. Just please leave in my copyright. So many times I see my script without it and it makes me sad. 
:-
:- Q6: Dude! Can you add more fields for me? I don't know php!
:-		A1: Maybe, but I do usually charge a fee depending on what you want done. Don't freak out! It's usually a very small one. If I'm having a very good day and feel rich (ha-ha) I might do it for free..
:-
:- Q7: Can I remove your copyright?
:-		A1: I can't really physically stop you. But it's much appreciated by the people that leave it on there. Some people donate me $15-$20 to take it off. If you donate a small amount to me I might just not care as much.
:-		A2: When I go to your site and see this script no matter how much you tried to edit it to hide the fact, I usually know it's mine and will usually report it to your host if I'm not to busy. ~35 down and counting!
:-		A3: So basically unless I say it's ok just leave it on there.. It doesn't hurt you at all does it? Does that little bit of text just make your balls itch? If it's that bad then go ahead...
:-
:- Q8: You never respond to my emails or in your forums (http://www.phphq.net/forums/)!
:-		A1: I know and I'm sorry. I'm a very busy guy. I'm out of town a lot, and at any given time I have several projects going on. I get a lot of emails about this script, not to mention my other ones. Sometimes I just get too many of the same emails.. I usually clear out my inbox every week on a non specific day.
:-		A2: I only understand English. If you do know English but it's very bad please write in your native language and then translate it to English using http://babelfish.altavista.com/babelfish/tr
:-		A3: You will get a much faster and much more detailed response if you write a decent message. "dude me form don't work see it at blah.com what's wrong??!?!" will get no response, ever. Write in detail what the problem is and what you did to try and fix it. Spend a minute on it, and I'll take some of my time to reply.
:-		A4: Please don't speak in h4x0r language. I do understand it but it's very annoying to me. I will most likely just chuckle and delete it.
:-
*/