|
I've been searching and searching for scripts (I do find them) but they're confusing to me and hard to apply to my website.
If it means anything I'm hosted on godaddy
The scripts I've been using look like they're going through, but I don't recieve any of the e-mails.
I really need an easy form script, a webmailer .asp or .php. idk I just want to host a form mailer on my page
the script above is very simple and not secure. but it works.
you can visit this site and find whatever you want? php, asp, java, etc.
http://www.hotscripts.com
I really need an easy form script, a webmailer .asp or .php. idk I just want to host a form mailer on my page
<?php
$sendto = "someuser@site.com";
$from = "you@you.com";
$sub = "Subject";
$message = "MESSAGE";
mail("$sentto",
"$from" ,"$sub", "$message");
That should do it...
I really need an easy form script, a webmailer .asp or .php. idk I just want to host a form mailer on my page
Check at hotscripts.com or else you may contact a web designer at websites like http://getafreelnacer.com/ to code it for you.
|