In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Got almost everything to work. Thank you all for your input. Code as > follows: > <?include ("../config.inc.php"); ?> > > <?php > > // setup SQL statement to retrieve link > > $SQL = " SELECT * FROM $tablename1 "; > $SQL = $SQL . " WHERE id = $id "; > > // execute SQL statement > $ret = mysql_db_query($dbname,$SQL,$link); > > if (!$ret) { echo("ERROR: " . mysql_error() . "\n$SQL\n"); } > > echo ("<P><B> Email Sent</B></P>\n"); > > // retrieve values > $row = mysql_fetch_array($ret); > $email = $row["email"]; > $title = $row["title"]; > $comments = $row["comments"]; > $title = $row["title"]; > > mail($email, $title, $comments, $emailaddress); > > > mysql_close($link); > > ?> > > $emailaddress is set in the config.inc.php file and comes in alright as a > header in the note. > > However, the mail is sent from the following: > nobody [[EMAIL PROTECTED]] > > Is there a way to tell the PHP Server where the mail is coming from.
There is an item in your php.ini sendmail_from string Which "From:" mail address should be used in mail sent from PHP under Windows. If you look at the docs for mail(), you'll see that there are also examples of using the fourth argument to mail() for extra headers, including the From: header. I am not sure whether using From: under Windows works in lieu of the php.ini entry. -- David Robley Temporary Kiwi! Quod subigo farinam -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php