Results 1 to 15 of 22
Thread: Why does this happen
-
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?
-
April 18th, 2003, 01:17 PM #2
bizump
-
April 18th, 2003, 01:44 PM #3
There are absolutely no differences between the code, are you sure you posted the right two versions?
-
April 18th, 2003, 01:57 PM #4
difference is the "$" in $From
in 1st case, you just send the word,
in the second ($From ) the value of that php variable...Joe
www.eyezberg.com
-
April 18th, 2003, 02:01 PM #5
Ohhh.... man, I went through that over and over and over... and NEVER noticed that. Good eye Eyez.....
-
April 18th, 2003, 02:09 PM #6
Yup, eyez founded it.
So it's just because the one was a word, and the other was a variable?
-
April 18th, 2003, 05:11 PM #7
Yeah
-
April 18th, 2003, 08:48 PM #8
oh.. well it still doesn't do what its supposed to, but its closer
-
April 18th, 2003, 09:01 PM #9
what exactly are you trying to do? I'm a little unclear as to what you want... its not sending the e-mail at all? or its just not saying what the From field is?
-
April 18th, 2003, 09:37 PM #10
Jubba:
It is sending the email, the subject and the actual message part show up, but what happens is that it comes from host33@ipowerweb.com, not from the inputed emaiil, and I'm wondering if there is a way to have it show up like that or if its ubpossible
-
April 18th, 2003, 09:52 PM #11
yeah, did you read all of my post here: http://www.kirupaforum.com/forums/sh...threadid=17313
it explains the header information in the 7th post down...
-
April 18th, 2003, 10:06 PM #12
Jubba, I read it, but I'm still lost
Like, I can make the name show up, just not in the right place..
and i don't really need the bcc thing if thats what you thought i meant.. sorry for bein annoying
-
April 18th, 2003, 10:07 PM #13
no not the bcc thing. it tells you how to put the From: part in.
-
April 18th, 2003, 10:09 PM #14
Ok, well I'm gonna do what I can, I'll post what I've done to further screw up my thing in a minute.
-
April 18th, 2003, 10:10 PM #15isnt that just gonna make it be from the person's name at xxviii.net? (xxviii.net being my server thing)PHP Code:
$headers = "From: $fromName <$fromName@$SERVER_NAME> \n";

Reply With Quote

Bookmarks