Click to See Complete Forum and Search --> : Easiest Formmail Script??


grimmylina
03-01-2007, 03:52 PM
Hi Everyone,

Question for you....I want to ise a formmail script on my website for a form but I don't think I have any on my server??

Is there an easy way to make a php one. I saw a few online ones but I couldn't figure them out and another wanted the ftp login/password for my site and I don't think it would be safe to give that kind of info out.

Thanks!!

Allie

creedo
03-01-2007, 06:42 PM
there are many tutorals availabale on the net but as a overview here is a little example of how it is done..you may also want to check the manual for php mail
function.

<?
$to = "email@email.com";
$from = "email@email2.com";
$sub = "My Email";
$msg = "Hello World!";
mail($to, $sub, $msg, "From: $from");
?>

ray326
03-01-2007, 10:02 PM
I've used this one.

http://www.bignosebird.com/carchive/bnbform.shtml

The_Magus
03-02-2007, 01:36 AM
Good Morning:

If you haven't already solved your problem, type "mailer.php" into Google and you will be directed to lots of choices.

Cheers

Jack
The Magus