On Wed, June 13, 2007 8:51 am, Daniel Brown wrote: > $from = "webmaster@xxxxxxxxxxx"; > //$reply_to = "webmaster@xxxxxxxxxxx"; // Same address, so not needed. Some spam filters and some email clients will behave rather badly if you don't have Reply-to: as well. Use it. > $headers .= "X-Mailer: PHP".phpversion()."\r\n"; // Headers ALWAYS > need \r\n The last header does not NEED \r\n because PHP is going to trim that off and put \r\n\r\n between headers and body anyway. But it's good practice to put it in there so that when you add yet another header, you don't mistakenly leave it out where it is needed. -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some indie artist. http://cdbaby.com/browse/from/lynch Yeah, I get a buck. So? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php