Results 1 to 15 of 22
Thread: Why does this happen
Threaded View
-
April 16th, 2003, 10:59 PM #1
Why does this happen
I have a mailer doohicky.. and I just curious as to why something happens...
That code doesn't send the e-mail addressPHP Code:<?
// Mail out
$f = "From : ";
$From = $f . $email;
mail("5852611864@vtext.com", $subject, $message, $From);
?>
That one does.. any clue whyPHP Code:<?
// Mail out
$f = "$From : ";
$From = $f . $email;
mail("5852611864@vtext.com", $subject, $message, $From);
?>
also... is there a way to make it so when the user inputs their email address it actually shows up as coming from there?

Reply With Quote

Bookmarks