How do I setup my php email contact form to send to me?
I’ve completely written the script to send the information to my email account.
I have two files…
The order form — form.php
and
The process script — process.php
…..I’m not entirely sure what to do from here? How do I utilize these php files?
Right now I’m simply inserting the script as html into a webhost page…but it never sends to my email…it simply leads to a blank page.



Does your web host support php?
If yes, then you will need to customize the file to send the email to you. There’s a million ways to do this with php, but you will have to specify, at a mininum the following to the script:
-smtp server (server to use to send the mail, your webhost can provide you with this information)
-email address destination, either hardcoded or taken from your form.
Good luck!
you need to upload the files on the server for it process
your process.php stays as is and your form should a html file and as you said you written script than it should be able to figure out how to code that.