You need to insert a "From:" line in the mail headers. That's the fourth parameter of the mail() function. Thus, you'd do something like:mail("[EMAIL PROTECTED]", "subject", "message", "From: [EMAIL PROTECTED]");
Actually, to be exact, the fourth parameter of PHP's mail() function is a string of "additional_headers". It can contain things like "From: [EMAIL PROTECTED]", "Content-type: text/plain", and other email header goodies. Cheers, Stephen /* PLUG: http://plug.org, #utah on irc.freenode.net Unsubscribe: http://plug.org/mailman/options/plug Don't fear the penguin. */
